cool-bun-demo/smakefile

24 lines
543 B
Plaintext
Raw Normal View History

2024-05-28 12:02:28 +00:00
MAIN_OBJS = main.o images.o system.lib screen.o bun.o
2024-09-22 12:12:37 +00:00
32_objs = 32x50_bun.o system.lib screen.o
2024-05-28 12:02:28 +00:00
2024-04-30 02:12:48 +00:00
all: main
.c.o:
sc $@ $*.c
.s.o:
genam -l $*.s
2024-09-19 17:03:46 +00:00
system.lib: system/system.o system/copper.o system/blitter.o system/debug.o
sc objectlibrary=system.lib system/system.o system/copper.o system/blitter.o system/debug.o
2024-05-27 18:58:13 +00:00
2024-05-28 12:02:28 +00:00
main: $(MAIN_OBJS)
2024-06-02 18:37:37 +00:00
sc link to main math=standard $(MAIN_OBJS)
2024-05-27 18:58:13 +00:00
2024-09-22 12:12:37 +00:00
32x50: $(32_objs)
sc link to 32x50 $(32_objs)
2024-06-02 18:37:37 +00:00
test: bun_test.o bun.o
sc link to bun_test identifierlength=32 math=standard bun_test.o bun.o cutest/CuTest.c
2024-05-27 18:58:13 +00:00