cool-bun-demo/smakefile

20 lines
447 B
Plaintext
Raw Permalink Normal View History

2024-05-28 12:02:28 +00:00
MAIN_OBJS = main.o images.o system.lib screen.o bun.o
2024-04-30 02:12:48 +00:00
all: main
.c.o:
sc $@ $*.c
.s.o:
genam -l $*.s
2024-05-27 18:58:13 +00:00
system.lib: system/system.o system/copper.o system/blitter.o
sc objectlibrary=system.lib system/system.o system/copper.o system/blitter.o
2024-05-28 12:02:28 +00:00
main: $(MAIN_OBJS)
sc link to main $(MAIN_OBJS)
2024-05-27 18:58:13 +00:00
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