Created Makefiles for the dist/ subdirectory and put dist/ under subversion control.
[xuni.git] / dist / Makefile
blob6e18104e4840e33f987a9a563b2d1acb8f6147d3
1 # Makefile for xuni's dist/ subdirectory, Linux version
3 ITARGET = xuni.tar
4 TARGET = $(ITARGET).gz
6 # Default target: all
7 all: clean files
8 cd .. ; tar --no-recursion -cf dist/$(ITARGET) $(shell cat FILES)
9 gzip $(ITARGET)
11 # Other targets
12 .PHONY: files clean
13 files:
14 svn list -R .. > FILES
15 cd .. ; find doc/html >> dist/FILES
16 echo xuni xuni.exe >> FILES
17 clean:
18 -rm $(TARGET)