You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
437 B
Makefile

CC = gcc
LIBS = -lz
BUILDNO=$(shell cat build)
CFLAGS = -O2 -Wunused -Wno-unused-result -static -D BUILDNO=$(BUILDNO) -D_7ZIP_ST $(LIBS)
.PHONY: all clean
all: balong-flash
clean:
rm -f *.o lzma/*.o
rm -f balong-flash
balong-flash: balong-flash.o hdlcio_linux.o ptable.o flasher.o util.o signver.o lzma/Alloc.o lzma/LzmaDec.o
@gcc $^ -o $@ $(LIBS)
@echo Current buid: $(BUILDNO)
@echo $$((`cat build`+1)) >build