]> code.delx.au - refind/blob - EfiLib/Make.tiano
Fixed uninitialized-pointer bug that manifested as a crash with
[refind] / EfiLib / Make.tiano
1 #
2 # EfiLib/Make.tiano
3 # Build control file for EfiLib components of rEFInd, using TianoCore EDK2
4 #
5
6 # This program is licensed under the terms of the GNU GPL, version 3,
7 # or (at your option) any later version.
8 # You should have received a copy of the GNU General Public License
9 # along with this program. If not, see <http://www.gnu.org/licenses/>.
10
11 include ../Make.common
12
13 SOURCE_NAMES = legacy BmLib BdsConnect DevicePath BdsHelper BdsTianoCore
14 OBJS = $(SOURCE_NAMES:=.obj)
15
16 all: $(AR_TARGET)
17
18 $(AR_TARGET): $(OBJS)
19 $(AR) -cr $(AR_TARGET).lib $(OBJS)
20
21 clean:
22 rm -f $(OBJS) *~ *.lib