mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-23 10:39:58 +00:00
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
13 lines
171 B
Makefile
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 $@
|
|
|