rocks_n_diamonds-0.9b
[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 needed to build this program:
19 XPM_INCLUDE_FILE = -DXPM_INCLUDE_FILE="<X11/xpm.h>"
20
21 CONFIG = $(GAME_DIR) $(SOUNDS) $(JOYSTICK)      \
22          $(SCORE_ENTRIES) $(XPM_INCLUDE_FILE)
23
24 # DEBUG = -DDEBUG -g -ansi -pedantic -Wall
25 # DEBUG = -DDEBUG -g -Wall
26 DEBUG = -O6
27
28 # SYSTEM = -Aa -D_HPUX_SOURCE -Dhpux    # for HP-UX (obsolete)
29 # SYSTEM = -DSYSV -Ae                   # for HP-UX
30 # SYSTEM = -DSYSV                       # for systems without 'usleep()'
31 # INCL = -I/usr/include/X11R5           # for HP-UX and others
32 # LIBS = -lXpm -lX11 -lm
33 # LIBS = -L/usr/lib/X11R5 -lXpm -lX11 -lm # for HP-UX and others
34 LIBS = -lXpm -lXpm -lXpm -lX11 -lm      # triple -lXpm; else I got an error...
35
36 # CFLAGS = -O2 $(CONFIG) $(SYSTEM)
37 CFLAGS = $(DEBUG) $(CONFIG) $(SYSTEM) $(INCL)
38
39 SRCS =  main.c          \
40         init.c          \
41         events.c        \
42         tools.c         \
43         screens.c       \
44         misc.c          \
45         game.c          \
46         editor.c        \
47         buttons.c       \
48         files.c         \
49         sound.c
50
51 OBJS =  main.o          \
52         init.o          \
53         events.o        \
54         tools.o         \
55         screens.o       \
56         misc.o          \
57         game.o          \
58         editor.o        \
59         buttons.o       \
60         files.o         \
61         sound.o
62
63 all:    $(OBJS)
64         $(CC) $(CFLAGS) $(OBJS) $(LIBS) -o $(PROGNAME)
65
66 .c.o:
67         $(CC) $(CFLAGS) -c $*.c
68
69 clean:
70         $(RM) $(OBJS)
71
72 depend:
73         for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend
74
75 ifeq (.depend,$(wildcard .depend))
76 include .depend
77 endif