Skip to content

Commit 6ce62db

Browse files
committed
Build dstar for Aquarius and Aquarius+ with other examples.
1 parent a6cf814 commit 6ce62db

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

examples/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SUBDIRS = console ticalc ace cpm embedded msx osca rex sam sms sos spectrum vz z88 zxvgs pacman rcmx000 g800 gb c128 nabu sound ticalc/multi_page_flash_app banked
1+
SUBDIRS = console ticalc ace cpm embedded msx osca rex sam sms sos spectrum vz z88 zxvgs pacman rcmx000 g800 gb c128 nabu sound ticalc/multi_page_flash_app banked aquarius
22
CLEANDIRS = $(SUBDIRS:%=%-clean)
33

44

examples/aquarius/Makefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
CC:=zcc
2+
CFLAGS:= +aquarius -m -DSOUND -create-app
3+
4+
PROJECTS:= _dstar.caq dstar.aqx
5+
6+
.PHONY: all clean
7+
8+
all: $(PROJECTS)
9+
10+
clean:
11+
rm -f *.caq *.aqx *.map *.bin
12+
13+
_dstar.caq: dstar.c dstar.h
14+
$(CC) $(CFLAGS) $< -odstar.bin
15+
16+
dstar.aqx: dstar.c dstar.h
17+
$(CC) $(CFLAGS) -subtype=aqx $< -odstar_aqplus.bin

0 commit comments

Comments
 (0)