Renamed src/stub/util/ to src/stub/tools/ .

This commit is contained in:
Markus F.X.J. Oberhumer
2006-06-15 17:56:57 +02:00
parent 0c9f3c638a
commit 2dfc0a58ab
6 changed files with 0 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
# Makefile for sstrip
SHELL = /bin/sh
##all: amd64-linux-sstrip
##all: i386-linux-sstrip
all: sstrip
sstrip: sstrip.c
gcc -O2 -g -Wall -W -o $@ $<
amd64-linux-sstrip: sstrip.c
gcc -m64 -O2 -g -Wall -W -o $@ $<
i386-linux-sstrip: sstrip.c
gcc -m32 -O2 -g -Wall -W -o $@ $<
mostlyclean clean distclean maintainer-clean:
rm -f *.d *.o *.obj
rm -f sstrip amd64-linux-sstrip i386-linux-sstrip
.PHONY: all mostlyclean clean distclean maintainer-clean