1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00

added timer.device example

This commit is contained in:
Wei-ju Wu
2013-02-27 14:35:07 -08:00
parent adc0ad456a
commit b3fd30c95b
3 changed files with 75 additions and 2 deletions

15
devices/Makefile Normal file
View File

@ -0,0 +1,15 @@
CC=vc +aos68k
CC13=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
clean:
rm -f timer
timer: timer.c
$(CC13) $(CFLAGS) timer.c -o timer -lamiga