fe4a3cc6c1
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2737 8092fc87-c524-0410-9efc-e669fe64eaf9
10 lines
167 B
Makefile
10 lines
167 B
Makefile
unstr: unstr.c unstr.h
|
|
gcc -W -Wall -g -O0 unstr.c -o unstr
|
|
|
|
clean:
|
|
rm unstr unstr.tgz
|
|
|
|
tgz: unstr.c unstr.h Makefile
|
|
tar -cvzf unstr.tgz unstr.c unstr.h Makefile
|
|
|