diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 19 insertions, 2 deletions
@@ -1,14 +1,31 @@ | |||
1 | LIBBU:=$(foreach f,paramproc.h paramproc.cpp staticstring.h staticstring.cpp exceptions.h exceptions.cpp serializable.h serializable.cpp exceptionbase.h exceptionbase.cpp plugger.h plugger.cpp singleton.h hashtable.cpp hashtable.h hashfunction.h hashfunction.cpp hashfunctionint.cpp hashfunctionint.h hashfunctionstring.cpp hashfunctionstring.h serializerbinary.cpp serializerbinary.h serializer.cpp serializer.h stringrep.h stringrep.cpp,src/$f) | 1 | LIBBU:=$(foreach f,paramproc.h paramproc.cpp staticstring.h staticstring.cpp exceptions.h exceptions.cpp serializable.h serializable.cpp exceptionbase.h exceptionbase.cpp plugger.h plugger.cpp singleton.h hashtable.cpp hashtable.h hashfunction.h hashfunction.cpp hashfunctionint.cpp hashfunctionint.h hashfunctionstring.cpp hashfunctionstring.h serializerbinary.cpp serializerbinary.h serializer.cpp serializer.h stringrep.h stringrep.cpp,src/$f) |
2 | SRC:=$(sort $(wildcard src/*.cpp) $(filter %.cpp,$(LIBBU))) | 2 | SRC:=$(sort $(wildcard src/*.cpp) $(filter %.cpp,$(LIBBU))) |
3 | OBJ:=src/build.yy.o src/build.tab.o $(patsubst %.cpp,%.o,$(SRC)) | 3 | OBJ:=src/build.yy.o src/build.tab.o $(patsubst %.cpp,%.o,$(SRC)) |
4 | REV:=$(shell svn info | grep "Revision" | cut -d\ -f2) | ||
5 | VER:=r$(REV) | ||
6 | PKG:=build-$(VER).tar.bz2 | ||
4 | 7 | ||
5 | .PHONY: all extern clean | 8 | .PHONY: all extern clean depclean package |
6 | # .SILENT: | 9 | # .SILENT: |
7 | 10 | ||
8 | all: extern build | 11 | all: extern build |
9 | 12 | ||
13 | package: clean depclean extern $(PKG) | ||
14 | |||
15 | $(PKG): | ||
16 | mkdir build-$(VER) | ||
17 | mkdir build-$(VER)/src | ||
18 | cp -a src/*.{cpp,h,y,l} build-$(VER)/src | ||
19 | cp -a build.conf build-$(VER) | ||
20 | cp -a Makefile.slim build-$(VER)/Makefile | ||
21 | tar -c build-$(VER) | bzip2 -9 > $(PKG) | ||
22 | rm -Rf build-$(VER) | ||
23 | |||
10 | clean: | 24 | clean: |
11 | -rm -Rf $(LIBBU) build $(OBJ) | 25 | -rm -Rf build $(OBJ) |
26 | |||
27 | depclean: | ||
28 | -rm -Rf $(LIBBU) | ||
12 | 29 | ||
13 | extern: $(LIBBU) | 30 | extern: $(LIBBU) |
14 | 31 | ||