Init
This commit is contained in:
commit
02965135bd
3 changed files with 167 additions and 0 deletions
21
Makefile
Normal file
21
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue