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:
15
devices/Makefile
Normal file
15
devices/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user