home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 682 b | 26 lines |
-
- /* SCORE_FILE = -DSCORE_FILE=\"/usr/games/lib/xrobotscores\" */
- MAXSCORES = -DMAXSCORES=20
- MAXX = -DMAXX=35
- MAXY = -DMAXY=20
- RANDOM = -DNO_RANDOM
- DEFINES = $(SCORE_FILE) $(MAXSCORES) $(MAXX) $(MAXY) $(RANDOM)
-
- SRCS = actions.c game.c graphics.c main.c score.c
- OBJS = actions.o game.o graphics.o main.o score.o
-
- INCLUDES = -I$(TOP) -I$(TOOLKITSRC)
- LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)
- SYS_LIBRARIES = -lm
-
- all:: xrobots
-
- ComplexProgramTarget(xrobots)
- /*
- * The following is a matter of preference:
- *
- * InstallManPage(xrobots,$(MANDIR))
- * InstallProgram(xrobots,$(BINDIR))
- */
-
-