2003-03-06 23:23:54 +00:00
|
|
|
include ../config.mak
|
|
|
|
|
2003-02-24 20:14:06 +00:00
|
|
|
CFLAGS=-Wall -O2 -g
|
|
|
|
LDFLAGS=
|
|
|
|
|
2003-03-06 23:23:54 +00:00
|
|
|
ifeq ($(ARCH),i386)
|
2003-03-20 22:33:23 +00:00
|
|
|
TESTS=test2 sha1-i386 test-i386
|
2003-03-06 23:23:54 +00:00
|
|
|
endif
|
2003-03-20 22:33:23 +00:00
|
|
|
TESTS+=sha1
|
2003-03-01 17:13:26 +00:00
|
|
|
|
2003-02-24 20:14:06 +00:00
|
|
|
GEMU=../gemu
|
|
|
|
|
|
|
|
all: $(TESTS)
|
|
|
|
|
|
|
|
hello: hello.c
|
|
|
|
$(CC) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $<
|
2003-03-20 22:33:23 +00:00
|
|
|
strip hello
|
2003-02-24 20:14:06 +00:00
|
|
|
|
|
|
|
test2: test2.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
2003-03-20 22:33:23 +00:00
|
|
|
# i386 emulation test (test various opcodes) */
|
2003-03-22 15:20:50 +00:00
|
|
|
test-i386: test-i386.c test-i386-code16.S \
|
|
|
|
test-i386.h test-i386-shift.h test-i386-muldiv.h
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ test-i386.c test-i386-code16.S -lm
|
2003-02-24 20:14:06 +00:00
|
|
|
|
|
|
|
test: test-i386
|
2003-03-20 22:33:23 +00:00
|
|
|
ifeq ($(ARCH),i386)
|
2003-02-24 20:14:06 +00:00
|
|
|
./test-i386 > test-i386.ref
|
2003-03-20 22:33:23 +00:00
|
|
|
endif
|
2003-02-24 20:14:06 +00:00
|
|
|
$(GEMU) test-i386 > test-i386.out
|
|
|
|
@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
|
|
|
|
|
|
|
|
# speed test
|
2003-03-20 22:33:23 +00:00
|
|
|
sha1-i386: sha1.c
|
2003-02-24 20:14:06 +00:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
2003-03-20 22:33:23 +00:00
|
|
|
sha1: sha1.c
|
|
|
|
$(HOST_CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
speed: sha1 sha1-i386
|
2003-02-24 20:14:06 +00:00
|
|
|
time ./sha1
|
2003-03-20 22:33:23 +00:00
|
|
|
time $(GEMU) ./sha1-i386
|
2003-02-24 20:14:06 +00:00
|
|
|
|
2003-03-06 23:23:54 +00:00
|
|
|
clean:
|
|
|
|
rm -f *~ *.o $(TESTS)
|