17 lines
279 B
Makefile
17 lines
279 B
Makefile
|
#Prevent make from trying to remake arch links symlinks
|
||
|
#which are fixed files now
|
||
|
ARCH_LINKS :=
|
||
|
|
||
|
GARD_VERSION := $(shell cat .version)
|
||
|
|
||
|
include rules.mk
|
||
|
GET_ARCH = common/get_arch.sh
|
||
|
include common/rules.mk
|
||
|
|
||
|
all: $(EXE)
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) *.o
|
||
|
distclean: clean
|
||
|
rm -f $(EXE)
|