rnd-19981204-1
[rocksndiamonds.git] / src / Makefile
1 #=============================================================================#
2 # Makefile for Rocks'n'Diamonds 1.2                                           #
3 # (c) 1995-98 Holger Schemel, aeglos@valinor.owl.de                           #
4 #=============================================================================#
5
6 #-----------------------------------------------------------------------------#
7 # configuration section                                                       #
8 #-----------------------------------------------------------------------------#
9
10 # change this to your favorite ANSI C compiler
11 CC = gcc
12
13 # on Solaris and similar systems, you'll need to uncomment this
14 # EXTRA_LIBS = -lnsl -lsocket 
15
16 # specify X11 library path on your system
17 XLIB_PATH = /usr/X11/lib
18
19 # change this to the directory where you want to install game data like levels
20 GAME_DIR = .
21
22 # uncomment this if your system has no joystick include file
23 # JOYSTICK = -DNO_JOYSTICK
24
25 # uncomment this if your system has no sound
26 # SOUNDS = -DNO_SOUNDS
27
28 # choose if you want to allow many global score file entries for one player
29 # when installing the game in a multi user environment, choose this
30 # SCORE_ENTRIES = ONE_PER_NAME
31 # when installing the game in a single user environment, choose this
32 SCORE_ENTRIES = MANY_PER_NAME
33
34 # The XPM-Library is no longer needed to build this program,
35 # but is used to load graphics if XPM_INCLUDE_FILE is defined,
36 # because the GIF loading routines are still a bit beta.
37 # If you want to use the Xpm library, convert the GIF files to Xpm
38 # files (and you need corresponding mask files in xbm format).
39
40 # XPM_INCLUDE_FILE = -DXPM_INCLUDE_FILE="<X11/xpm.h>"
41 # EXTRA_X11_LIBS = -lXpm
42
43 #-----------------------------------------------------------------------------#
44 # you shouldn't need to change anything below                                 #
45 #-----------------------------------------------------------------------------#
46
47 ifdef COMSPEC
48 PLATFORM = dos
49 else
50 PLATFORM = unix
51 endif
52
53 ifeq ($(PLATFORM),unix)
54 RM = rm -f
55 PROGNAME = ../rocksndiamonds
56 LIBS = -L$(XLIB_PATH) $(EXTRA_X11_LIBS) -lX11 -lm $(EXTRA_LIBS)
57 else
58 RM = del
59 PROGNAME = ..\rocks.exe
60 LIBS = -lm -lalleg
61 endif
62
63 CPP = $(CC) -E
64
65 CONFIG_GAME_DIR = -DGAME_DIR="\"$(GAME_DIR)\""
66 CONFIG_SCORE_ENTRIES = -D$(SCORE_ENTRIES)
67
68 CONFIG = $(CONFIG_GAME_DIR) $(SOUNDS) $(JOYSTICK)       \
69          $(CONFIG_SCORE_ENTRIES) $(XPM_INCLUDE_FILE)
70
71 # DEBUG = -DDEBUG -g -Wall -ansi -pedantic
72 # DEBUG = -DDEBUG -g -Wall
73 DEBUG = -O3 -Wall
74 # DEBUG = -O3
75
76 # SYSTEM = -Aa -D_HPUX_SOURCE -Dhpux    # for HP-UX (obsolete)
77 # SYSTEM = -DSYSV -Ae                   # for HP-UX
78 # INCL = -I/usr/include/X11R5           # for HP-UX and others
79 # INCL = -I/usr/local/X11/include       # for SunOS and others
80 # LIBS = -L/usr/lib/X11R5 -lXpm -lX11 -lm
81 #                                       # for HP-UX and others
82 # LIBS = -L/usr/local/X11/lib -lXpm -lX11 -lm -lsocket -R/usr/local/X11/lib
83 #                                       # for SunOS and others
84
85 # LIBS = -L/usr/X11R6/lib -lXpm -lX11 -lm
86 # LIBS = -L/usr/X11R6/lib -lX11 -lm
87
88 # LIBS = -L/usr/X11R6/lib $(EXTRA_X11_LIBS) -lX11 -lm $(EXTRA_LIBS)
89
90 # LIBS = -L$(XLIB_PATH) $(EXTRA_X11_LIBS) -lX11 -lm $(EXTRA_LIBS)
91
92 # CFLAGS = -O2 $(CONFIG) $(SYSTEM)
93 CFLAGS = $(DEBUG) $(CONFIG) $(SYSTEM) $(INCL)
94
95 SRCS =  main.c          \
96         init.c          \
97         events.c        \
98         tools.c         \
99         screens.c       \
100         misc.c          \
101         game.c          \
102         editor.c        \
103         buttons.c       \
104         files.c         \
105         tape.c          \
106         sound.c         \
107         joystick.c      \
108         cartoons.c      \
109         random.c        \
110         pcx.c           \
111         image.c         \
112         network.c       \
113         netserv.c       \
114         msdos.c
115
116 OBJS =  main.o          \
117         init.o          \
118         events.o        \
119         tools.o         \
120         screens.o       \
121         misc.o          \
122         game.o          \
123         editor.o        \
124         buttons.o       \
125         files.o         \
126         tape.o          \
127         sound.o         \
128         joystick.o      \
129         cartoons.o      \
130         random.o        \
131         pcx.o           \
132         image.o         \
133         network.o       \
134         netserv.o       \
135         msdos.o
136
137 all:    $(PROGNAME)
138
139 $(PROGNAME):    $(OBJS)
140         $(CC) $(CFLAGS) $(OBJS) $(LIBS) -o $(PROGNAME)
141
142 .c.o:
143         $(CC) $(CFLAGS) -c $*.c
144
145 clean:
146         $(RM) *.o
147         $(RM) $(PROGNAME)
148
149 depend:
150         for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend
151
152 ifeq (.depend,$(wildcard .depend))
153 include .depend
154 endif