1 # Variations on Rockdodger
2 # Copyright (C) 2004 Joshua Grams <josh@qualdan.com>
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.
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.
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
19 exec_prefix = $(prefix)
21 datarootdir = $(prefix)/share/games
22 pkgdatadir = $(datarootdir)/vor
23 bindir = $(exec_prefix)/games
28 paths := -DDATA_PREFIX=\"$(pkgdatadir)\"
29 sdl-cflags := $(shell sdl-config --cflags)
30 sdl-ldflags := $(shell sdl-config --libs)
32 ldflags := $(sdl-ldflags) -lSDL_image -lSDL_mixer $(LDFLAGS)
33 cflags := $(sdl-cflags) $(paths) $(CFLAGS)
35 my_objects := args.o dust.o file.o mt.o rocks.o score.o sprite.o sound.o autopilot.o
38 objects := $(libs) $(my_objects)
40 rocks := 00 01 02 03 04 05 06 07 08 09
41 rocks += 10 11 12 13 14 15 16 17 18 19
42 rocks += 20 21 22 23 24 25 26 27 28 29
43 rocks += 30 31 32 33 34 35 36 37 38 39
44 rocks += 40 41 42 43 44 45 46 47 48 49
45 rocks := $(rocks:%=data/rock%.png)
46 graphics := data/ship.png data/icon.png data/life.png data/font.png $(rocks)
49 INSTALL_PROGRAM := $(INSTALL)
50 INSTALL_DATA := $(INSTALL) -m 644
53 .PHONY: all clean maintainer-clean install uninstall
54 .PHONY: mkinstalldirs rminstalldirs
55 .PHONY: program program-clean install-program uninstall-program
56 .PHONY: data data-clean install-data uninstall-data
58 .INTERMEDIATE: font_guts font_guts.pov
67 $(CC) $(cflags) -c -o $@ $<
69 $(my_objects): config.h
75 dust.o: globals.h dust.h float.h mt.h
77 file.o: file.h common.h
79 main.o: args.h common.h dust.h file.h float.h globals.h mt.h rocks.h score.h sprite.h sound.h autopilot.h
83 rocks.o: rocks.h common.h file.h globals.h mt.h sprite.h
85 score.o: score.h common.h file.h
87 sound.o: sound.h args.h common.h
89 sprite.o: sprite.h common.h
92 $(CC) $^ $(ldflags) -o $@
97 exuberant-ctags *.c *.h /usr/include/SDL/*
102 maintainer-clean: program-clean data-clean
108 rm -f $(graphics) font_guts font_guts.pov
111 if [ ! -d $(DESTDIR)$(pkgdatadir) ]; then mkdir $(DESTDIR)$(pkgdatadir); fi
113 rminstalldirs: uninstall-data
114 if [ -d $(DESTDIR)$(pkgdatadir) ]; then rmdir $(DESTDIR)$(pkgdatadir); fi
116 install: all mkinstalldirs install-program install-data
118 install-program: program
119 $(INSTALL_PROGRAM) ./vor $(DESTDIR)$(bindir)/
121 install-data: data mkinstalldirs
122 $(INSTALL_DATA) ./data/*.png $(DESTDIR)$(pkgdatadir)/
123 $(INSTALL_DATA) ./data/*.wav $(DESTDIR)$(pkgdatadir)/
124 $(INSTALL_DATA) ./data/*.xm $(DESTDIR)$(pkgdatadir)/
126 @echo "$(pkgdatadir)/icon.png (48x48) or ship.png (32x32) make good icons."
129 uninstall: uninstall-program uninstall-data rminstalldirs
132 rm -f $(DESTDIR)$(bindir)/vor
135 rm -f $(DESTDIR)$(pkgdatadir)/*.png
136 rm -f $(DESTDIR)$(pkgdatadir)/*.wav
137 rm -f $(DESTDIR)$(pkgdatadir)/*.xm