cool-bun-demo/smakefile

20 lines
447 B
Plaintext

MAIN_OBJS = main.o images.o system.lib screen.o bun.o
all: main
.c.o:
sc $@ $*.c
.s.o:
genam -l $*.s
system.lib: system/system.o system/copper.o system/blitter.o
sc objectlibrary=system.lib system/system.o system/copper.o system/blitter.o
main: $(MAIN_OBJS)
sc link to main $(MAIN_OBJS)
test: blitter_test.o blitter.o system.o
sc link to blitter_test identifierlength=32 math=standard blitter_test.o blitter.o cutest/CuTest.c system.o