rnd-19980820
[rocksndiamonds.git] / src / Makefile
1 #
2 # Makefile fuer "Rocks'n'Diamonds -- McDuffin Strikes Back"
3 #
4
5 PROGNAME = rocksndiamonds
6
7 RM = rm -f
8 CC = gcc
9 CPP = $(CC) -E
10 # CC = cc                               # for HP-UX and others
11
12 GAME_DIR = -DGAME_DIR=\".\"             # path of the game and its data
13 # JOYSTICK = -DNO_JOYSTICK              # no joystick
14 # SOUNDS = -DNO_SOUNDS                  # no sounds
15 # SCORE_ENTRIES = -DONE_PER_NAME        # only one score entry per name
16 SCORE_ENTRIES = -DMANY_PER_NAME         # many score entries per name
17
18 # The XPM-Library is no longer needed to build this program,
19 # but is used to load graphics if XPM_INCLUDE_FILE is defined,
20 # because the GIF loading routines are still a bit beta.
21 # If you use the Xpm library, convert the GIF files to Xpm
22 # files (and the mask files ('*Maske.gif') to xbm files).
23
24 # XPM_INCLUDE_FILE = -DXPM_INCLUDE_FILE="<X11/xpm.h>"
25
26 CONFIG = $(GAME_DIR) $(SOUNDS) $(JOYSTICK)      \
27          $(SCORE_ENTRIES) $(XPM_INCLUDE_FILE)
28
29 # DEBUG = -DDEBUG -g -ansi -pedantic -Wall
30 DEBUG = -DDEBUG -g -Wall
31 # DEBUG = -O6
32
33 # SYSTEM = -Aa -D_HPUX_SOURCE -Dhpux    # for HP-UX (obsolete)
34 # SYSTEM = -DSYSV -Ae                   # for HP-UX
35 # INCL = -I/usr/include/X11R5           # for HP-UX and others
36 # INCL = -I/usr/local/X11/include       # for SunOS and others
37 # LIBS = -L/usr/lib/X11R5 -lXpm -lX11 -lm
38 #                                       # for HP-UX and others
39 # LIBS = -L/usr/local/X11/lib -lXpm -lX11 -lm -lsocket -R/usr/local/X11/lib
40 #                                       # for SunOS and others
41
42 LIBS = -L/usr/X11R6/lib -lXpm -lX11 -lm
43 # LIBS = -L/usr/X11R6/lib -lX11 -lm
44
45 # CFLAGS = -O2 $(CONFIG) $(SYSTEM)
46 CFLAGS = $(DEBUG) $(CONFIG) $(SYSTEM) $(INCL)
47
48 SRCS =  main.c          \
49         init.c          \
50         events.c        \
51         tools.c         \
52         screens.c       \
53         misc.c          \
54         game.c          \
55         editor.c        \
56         buttons.c       \
57         files.c         \
58         tape.c          \
59         sound.c         \
60         joystick.c      \
61         cartoons.c      \
62         gfxloader.c     \
63         random.c
64
65 OBJS =  main.o          \
66         init.o          \
67         events.o        \
68         tools.o         \
69         screens.o       \
70         misc.o          \
71         game.o          \
72         editor.o        \
73         buttons.o       \
74         files.o         \
75         tape.o          \
76         sound.o         \
77         joystick.o      \
78         cartoons.o      \
79         gfxloader.o     \
80         random.o
81
82 all:    $(OBJS)
83         $(CC) $(CFLAGS) $(OBJS) $(LIBS) -o $(PROGNAME)
84
85 .c.o:
86         $(CC) $(CFLAGS) -c $*.c
87
88 clean:
89         $(RM) $(OBJS)
90
91 BACKUP_DIR = /home/aeglos/BACKUP/rnd
92 BACKUP_DATE = `date +%y%m%d`
93 BACKUP_FILE = $(BACKUP_DIR)/rnd-$(BACKUP_DATE).tgz
94
95 backup:
96         @echo "tar cvzf $(BACKUP_FILE) *.c *.h Makefile"
97         @tar cvzf $(BACKUP_FILE) *.c *.h Makefile
98
99 depend:
100         for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend
101
102 ifeq (.depend,$(wildcard .depend))
103 include .depend
104 endif