mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-19 16:01:31 +00:00
11 lines
191 B
Makefile
11 lines
191 B
Makefile
CC = vc +aos68k
|
|
CFLAGS = -Iexample/include -Iinclude -I$(NDK_INC)
|
|
|
|
all: TestExampleLib
|
|
|
|
clean:
|
|
rm -f *.o TestExampleLib
|
|
|
|
TestExampleLib: TestExampleLib.c
|
|
$(CC) $(CFLAGS) -lamiga -o $@ $^
|