1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-11-19 07:50:43 +00:00
Files
amiga-stuff/devices/Makefile
2016-06-13 08:49:14 -07:00

18 lines
354 B
Makefile

CC=vc +kick13
# Note: VBCC comes with linker library replacements, that should be used.
# If not, printf() stops working in the expected way, because it is part
# of amiga.lib
CFLAGS=-c99 -I$(NDK_INC)
all: timer audio
clean:
rm -f timer audio
timer: timer.c
$(CC) $(CFLAGS) $^ -o $@ -lamiga
audio: audio.c
$(CC) $(CFLAGS) $^ -o $@ -lamiga -lauto