1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-11-23 10:39:58 +00:00
Files
amiga-stuff/requesters/Makefile
Wei-ju Wu 037bf7bb4a added integration with DOS 1.x
found out how to access the current volume list in AmigaDOS and
added a way to read this list, currently displays a portion of
the assign list in the file list
2016-01-16 13:36:19 -08:00

13 lines
171 B
Makefile

#CC=vc +aos68k
CC=vc +kick13
CFLAGS=-c99 -I$(NDK_INC) -DDEBUG
all: main
clean:
rm -f *.o main
main: main.o filereq.o dos13.o
$(CC) $(CFLAGS) $^ -lamiga -lauto -o $@