mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-19 16:01:31 +00:00
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.
12 lines
170 B
Makefile
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 $@
|