aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests/blowfish.mk
blob: a8ede7f615895c862a156af2c65f9af0d7458427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
override XEN_TARGET_ARCH = x86_32
XEN_ROOT = ../..
CFLAGS =
include $(XEN_ROOT)/tools/Rules.mk

$(call cc-options-add,CFLAGS,CC,$(EMBEDDED_EXTRA_CFLAGS))

CFLAGS += -fno-builtin -msoft-float

.PHONY: all
all: blowfish.bin

blowfish.bin: blowfish.c
	$(CC) $(CFLAGS) -c blowfish.c
	$(LD) $(LDFLAGS_DIRECT) -N -Ttext 0x100000 -o blowfish.tmp blowfish.o
	$(OBJCOPY) -O binary blowfish.tmp blowfish.bin
	rm -f blowfish.tmp