JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
oops, pressing space was skipping high score entry.
[vor.git] / Makefile
1 #   Variations on Rockdodger
2 #   Copyright (C) 2004  Joshua Grams <josh@qualdan.com>
3
4 #   This program is free software; you can redistribute it and/or modify
5 #   it under the terms of the GNU General Public License as published by
6 #   the Free Software Foundation; either version 2 of the License, or
7 #   (at your option) any later version.
8
9 #   This program is distributed in the hope that it will be useful,
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #   GNU General Public License for more details.
13
14 #   You should have received a copy of the GNU General Public License
15 #   along with this program; if not, write to the Free Software
16 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18 DATA_PREFIX := /usr/share/vor
19 PROGRAM_PREFIX := /usr/games/bin
20
21 CFLAGS := -Wall -ggdb
22 LDFLAGS := 
23
24 paths := -DDATA_PREFIX=\"$(DATA_PREFIX)\"
25 sdl-cflags := $(shell sdl-config --cflags)
26 sdl-ldflags := $(shell sdl-config --libs)
27
28 ldflags := $(sdl-ldflags) -lSDL_image -lSDL_mixer $(LDFLAGS)
29 cflags := $(sdl-cflags) $(paths) $(CFLAGS)
30
31 my_objects := args.o dust.o file.o mt.o rocks.o score.o sprite.o sound.o
32 my_objects += main.o
33 libs := SFont.o
34 objects := $(libs) $(my_objects)
35
36 rocks := 00 01 02 03 04 05 06 07 08 09
37 rocks += 10 11 12 13 14 15 16 17 18 19
38 rocks += 20 21 22 23 24 25 26 27 28 29
39 rocks += 30 31 32 33 34 35 36 37 38 39
40 rocks += 40 41 42 43 44 45 46 47 48 49
41 rocks := $(rocks:%=data/sprites/rock%.png)
42 graphics := data/sprites/ship.png data/indicators/life.png $(rocks)
43
44 INSTALL := install
45 INSTALL_PROGRAM := $(INSTALL) -o games -g games
46 INSTALL_DATA := $(INSTALL) -m 644
47
48
49 .PHONY: all clean maintainer-clean install uninstall
50 .PHONY: mkinstalldirs rminstalldirs
51 .PHONY: program program-clean install-program uninstall-program
52 .PHONY: data data-clean install-data uninstall-data
53
54 all: program data
55
56 data: $(graphics)
57
58 program: vor
59
60 %.o: %.c
61         @echo compiling $@ from $<
62         @$(CC) $(cflags) -c -o $@ $<
63
64 $(my_objects): config.h
65
66 SFont.o: SFont.h
67
68 args.o: args.h
69
70 dust.o: globals.h dust.h mt.h
71
72 file.o: file.h common.h
73
74 main.o: args.h common.h dust.h file.h globals.h mt.h rocks.h score.h sprite.h sound.h
75
76 mt.o: mt.h
77
78 rocks.o: rocks.h common.h file.h globals.h mt.h sprite.h
79
80 score.o: score.h common.h file.h
81
82 sound.o: sound.h args.h common.h
83
84 sprite.o: sprite.h common.h
85
86 vor: $(objects)
87         @echo linking $@ from $^
88         @$(CC) $(ldflags) -o $@ $^ $(LIBRARIES)
89
90 include gfx.mk
91
92 tags: *.c *.h
93         exuberant-ctags *.c *.h /usr/include/SDL/*
94
95 clean: program-clean
96         rm -f tags
97
98 maintainer-clean: program-clean data-clean
99
100 program-clean:
101         rm -f *.o vor
102
103 data-clean:
104         rm -f $(graphics)
105
106 mkinstalldirs:
107         if [ ! -d $(DATA_PREFIX) ]; then mkdir $(DATA_PREFIX); fi
108         if [ ! -d $(DATA_PREFIX)/banners ]; then mkdir $(DATA_PREFIX)/banners; fi
109         if [ ! -d $(DATA_PREFIX)/fonts ]; then mkdir $(DATA_PREFIX)/fonts; fi
110         if [ ! -d $(DATA_PREFIX)/icons ]; then mkdir $(DATA_PREFIX)/icons; fi
111         if [ ! -d $(DATA_PREFIX)/indicators ]; then mkdir $(DATA_PREFIX)/indicators; fi
112         if [ ! -d $(DATA_PREFIX)/music ]; then mkdir $(DATA_PREFIX)/music; fi
113         if [ ! -d $(DATA_PREFIX)/sounds ]; then mkdir $(DATA_PREFIX)/sounds; fi
114         if [ ! -d $(DATA_PREFIX)/sprites ]; then mkdir $(DATA_PREFIX)/sprites; fi
115
116 rminstalldirs:
117         if [ -d $(DATA_PREFIX)/banners ]; then rmdir $(DATA_PREFIX)/banners; fi
118         if [ -d $(DATA_PREFIX)/fonts ]; then rmdir $(DATA_PREFIX)/fonts; fi
119         if [ -d $(DATA_PREFIX)/icons ]; then rmdir $(DATA_PREFIX)/icons; fi
120         if [ -d $(DATA_PREFIX)/indicators ]; then rmdir $(DATA_PREFIX)/indicators; fi
121         if [ -d $(DATA_PREFIX)/music ]; then rmdir $(DATA_PREFIX)/music; fi
122         if [ -d $(DATA_PREFIX)/sounds ]; then rmdir $(DATA_PREFIX)/sounds; fi
123         if [ -d $(DATA_PREFIX)/sprites ]; then rmdir $(DATA_PREFIX)/sprites; fi
124         if [ -d $(DATA_PREFIX) ]; then rmdir $(DATA_PREFIX); fi
125
126 install: all mkinstalldirs install-program install-data
127
128 install-program: program
129         $(INSTALL_PROGRAM) ./vor $(PROGRAM_PREFIX)
130
131 install-data: data
132         $(INSTALL_DATA) ./data/banners/* $(DATA_PREFIX)/banners/
133         $(INSTALL_DATA) ./data/fonts/* $(DATA_PREFIX)/fonts/
134         $(INSTALL_DATA) ./data/icons/* $(DATA_PREFIX)/icons/
135         $(INSTALL_DATA) ./data/indicators/* $(DATA_PREFIX)/indicators/
136         $(INSTALL_DATA) ./data/music/* $(DATA_PREFIX)/music/
137         $(INSTALL_DATA) ./data/sounds/* $(DATA_PREFIX)/sounds/
138         $(INSTALL_DATA) ./data/sprites/* $(DATA_PREFIX)/sprites/
139
140 uninstall: uninstall-program uninstall-data rminstalldirs
141
142 uninstall-program:
143         rm -f $(PROGRAM_PREFIX)/vor
144
145 uninstall-data:
146         rm -f $(DATA_PREFIX)/banners/*
147         rm -f $(DATA_PREFIX)/fonts/*
148         rm -f $(DATA_PREFIX)/icons/*
149         rm -f $(DATA_PREFIX)/indicators/*
150         rm -f $(DATA_PREFIX)/music/*
151         rm -f $(DATA_PREFIX)/sounds/*
152         rm -f $(DATA_PREFIX)/sprites/*
153         rm -f $(DATA_PREFIX)/scores