Renamed i386-linux-sstrip to sstrip.

This commit is contained in:
Markus F.X.J. Oberhumer 2006-06-15 08:41:33 +02:00
parent d3323d6550
commit 1e0c38b5f9
2 changed files with 5 additions and 2 deletions

View File

@ -111,7 +111,7 @@ tc.default.nasm += -I$(srcdir)/ -I$(srcdir)/src/
tc.default.nasm += -O99 -w+macro-params -w+macro-selfref -w+number-overflow -w+orphan-labels
tc.default.pp-asm = i386-linux-gcc-2.95.3 -E -nostdinc -x assembler-with-cpp -Wall -Wp,-P,-C,-traditional
tc.default.pp-nasm = $(tc.default.gpp_inc) --mode=nasm -I$(srcdir)/ -I$(srcdir)/src/
tc.default.stripelf = i386-linux-sstrip
tc.default.stripelf = sstrip
# some common settings for $(tc_list)
tc.i086.app-nasm = perl -w $(srcdir)/src/arch/i086/app-nasm.pl

View File

@ -3,8 +3,11 @@
SHELL = /bin/sh
##all: amd64-linux-sstrip
all: i386-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