1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-11-20 16:49:19 +00:00
Files
amiga-stuff/requesters/Makefile
Wei-ju Wu 3e89af887a added sorting for the file list
added chibi test framework in requesters for unit testing the
more complicated sorting functionality, added sorting for file
lists
2016-02-23 20:24:59 -08:00

19 lines
296 B
Makefile

#CC=vc +aos68k
CC=vc +kick13
CFLAGS=-c99 -I$(NDK_INC) -DDEBUG -O2
all: main
clean:
rm -f *.o main
main: main.o filereq.o dos13.o file_list.o
$(CC) $(CFLAGS) $^ -lamiga -lauto -o $@
check: file_list_test
file_list_test: file_list.c file_list_test.c chibi.c
gcc $^ -o $@
./file_list_test