Created Makefiles for the dist/ subdirectory and put dist/ under subversion control.
[xuni.git] / dist / Makewin
blobead5c9ad8207fa56ba72acec9a4cf0b5b104a15b
1 # Makefile for xuni's dist/ subdirectory, Windows version
3 ITARGET = xuni.tar
4 TARGET = $(ITARGET).gz
6 # Default target: all
7 all: clean files
8         tar --no-recursion -cf $(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)