cool-bun-demo/smakefile

40 lines
1.0 KiB
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-09-26 21:32:04 +00:00
32_objs = 32x50_bun.o system.lib screen.o images.o
33_objs = 33x50_bun.o system.lib screen.o images.o
left_side_objs = left_side.o system.lib screen.o images.o
right_side_objs = right_side.o system.lib screen.o images.o
any_position = any_position.o system.lib screen.o images.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-09-26 21:32:04 +00:00
33x50: $(33_objs)
sc link to 33x50 $(33_objs)
left_side: $(left_side_objs)
sc link to left_side $(left_side_objs)
right_side: $(right_side_objs)
sc link to right_side $(right_side_objs)
any_position: $(any_position)
sc link to any_position $(any_position)
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