CloverBootloader/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/makefile
Sergey Isakov b1264ef1e3 changes of BaseTools
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
2019-09-04 23:02:41 +03:00

20 lines
313 B
Makefile
Executable File

BAG=../../bin/bag
SRC=test.c rexpr.c
OBJ=test.o rexpr.o
CFLAGS = -g
test: $(OBJ) $(SRC)
cc -g -o texpr $(OBJ)
shar:
shar makefile test.c rexpr.c rexpr.h > rexpr.shar
archive:
$(BAG) makefile test.c rexpr.c rexpr.h > rexpr.bag
clean:
rm -rf *.o core texpr
scrub:
rm -rf *.o core texpr