mirror of
https://github.com/forth32/balongflash
synced 2024-11-15 12:12:52 +00:00
18 lines
347 B
Makefile
Executable File
18 lines
347 B
Makefile
Executable File
CC = gcc
|
|
LIBS =
|
|
#BUILDNO = `cat build`
|
|
BUILDNO=$(shell cat build)
|
|
CFLAGS = -O2 -Wno-unused-result -D BUILDNO=$(BUILDNO)
|
|
.PHONY: all clean
|
|
|
|
all: balong_flash
|
|
|
|
clean:
|
|
rm *.o
|
|
rm balong_flash
|
|
|
|
balong_flash: balong_flash.o hdlcio.o ptable.o
|
|
@gcc $^ -o $@ $(LIBS)
|
|
@echo Current buid: $(BUILDNO)
|
|
@echo $$((`cat build`+1)) >build
|
|
|