1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-11-19 16:01:31 +00:00
Files
amiga-stuff/requesters/Makefile
Wei-ju Wu 692fde408d requesters: proportional gadget size
Now the file list scroller gadget is set according to the number
of represented files in the list. By computing the body size
algebraic rather than numeric we are avoiding the floating point
division.
2016-01-18 21:05:22 -08:00

12 lines
170 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 $@