1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#undef InstallManPage
#define InstallManPage(file,destdir) # fake IMP(file,destdir)
#undef InstallManPageLong
#define InstallManPageLong(file,destdir,dest) # fake IMPL(file,destdir,dest)
#CC = gcc
LOCAL_LIBRARIES = $(XLIB) -lm
EXTRA_DEFINES = -DSH_MEM
EXTRA_LOAD_FLAGS =
SRCS1 = x11cntrl.c draw_3d.c x11smiley.c x11gfx.c netmaze.c\
network.c allmove.c maze.c iocntl.c audio.c texture.c
SRCS2 = netserv.c maze.c
OBJS1 = x11cntrl.o draw_3d.o x11smiley.o x11gfx.o netmaze.o\
network.o allmove.o maze.o iocntl.o audio.o texture.o
OBJS2 = netserv.o maze.o
SRCS3 = follower.c dummy.c better.c allmove.c robot.c network.c maze.c
PROGRAMS = netmaze netserv follower dummy betterbot
ComplexProgramTarget_1 (netmaze, $(LOCAL_LIBRARIES),)
ComplexProgramTarget_2 (netserv, $(LOCAL_LIBRARIES),)
SingleProgramTarget(dummy,dummy.o allmove.o robot.o network.o maze.o,,)
SingleProgramTarget(follower,follower.o allmove.o robot.o network.o maze.o,,-lm)
SingleProgramTarget(betterbot,better.o allmove.o robot.o network.o maze.o,,-lm)
|