This commit is contained in:
Vasily A. Avilov 2016-01-26 18:44:44 +10:00
commit 02965135bd
3 changed files with 167 additions and 0 deletions

21
Makefile Normal file
View file

@ -0,0 +1,21 @@
#CFLAGS=-O3 -Wall
CFLAGS=-g -ggdb -Wall
#LDLIBS=-l
all: pacextractor
version.h:
if [ ! -f version.h ]; then \
if [ -d .git ]; then \
echo '#define VERSION_STR "$(shell git describe --tags --abbrev=0)"' > version.h; \
else \
echo '#define VERSION_STR ""' > version.h; \
fi \
fi
pacextractor.o: version.h
clean:
rm -f pacextractor *.o version.h
.PHONY: clean all