cool-bun-demo/smakefile

18 lines
438 B
Plaintext
Raw Normal View History

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
main: main.o images.o system.lib screen.o
sc link to main main.o system.lib screen.o images.o
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