acc6dfc8fc
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@147 8092fc87-c524-0410-9efc-e669fe64eaf9
13 lines
297 B
Makefile
13 lines
297 B
Makefile
unpkg: unpkg.c unpkg.h
|
|
gcc -W -Wall -g -O0 unpkg.c -o unpkg
|
|
|
|
parseres: parseres.c parseres.h
|
|
gcc -W -Wall -g -O0 parseres.c -o parseres
|
|
|
|
clean:
|
|
rm unpkg parseres unpkg.tgz
|
|
|
|
tgz: unpkg.c unpkg.h Makefile parseres.c parseres.h
|
|
tar -cvzf unpkg.tgz unpkg.c unpkg.h Makefile parseres.c parseres.h
|
|
|