mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-20 16:49:19 +00:00
added chibi test framework in requesters for unit testing the more complicated sorting functionality, added sorting for file lists
19 lines
296 B
Makefile
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
|