You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
551 B
22 lines
551 B
#
|
|
# :ts=8
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
NAME = testapp
|
|
|
|
LFLAGS = addsym smallcode smalldata noicons batch
|
|
LIBS = lib:sc.lib lib:amiga.lib lib:debug.lib
|
|
|
|
###############################################################################
|
|
|
|
$(NAME) : main.o configfile.lib configfile.h
|
|
slink lib:c.o main.o to $(NAME) noicons lib $(LIBS) configfile.lib $(LFLAGS)
|
|
|
|
clean:
|
|
delete \#?.o $(NAME) ALL QUIET
|
|
|
|
###############################################################################
|
|
|
|
main.o : main.c
|
|
|