2
0
mirror of https://github.com/bebbo/amigaos-cross-toolchain.git synced 2025-12-08 22:38:24 +00:00
Files
amigaos-cross-toolchain6/examples/Makefile
2014-01-05 13:04:09 +01:00

19 lines
363 B
Makefile

CC = m68k-amigaos-gcc -noixemul -s
CFLAGS = -Os -Wall -fomit-frame-pointer
all: hello hello-mui
hello: LDLIBS = -lnix13
hello: CC += -fbaserel
hello: CFLAGS += -m68000 -msmall-code
hello: hello.c
hello-mui: CC += -fbaserel
hello-mui: CFLAGS += -m68020 -msmall-code
hello-mui: LDLIBS = -lmui
hello-mui: hello-mui.c
clean:
rm -f hello hello-mui
rm -f *.o *~