Files
upx/src/stub/tools/sstrip/Makefile
T
2006-06-15 17:56:57 +02:00

22 lines
457 B
Makefile

# 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