JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
checking for SDL properly, and building again.
[vor.git] / Makefile.win
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 CC := gcc
19 LDFLAGS := -mwindows -lmingw32 -lSDLmain -lSDL -lSDL_image -lSDL_mixer
20 CFLAGS := -Wall -O3 -ISDL
21
22 my_objects := args.o dust.o file.o mt.o rocks.o score.o sprite.o sound.o
23 my_objects += main.o
24 libs := font.o
25 objects := $(libs) $(my_objects)
26
27 rocks := 00 01 02 03 04 05 06 07 08 09
28 rocks += 10 11 12 13 14 15 16 17 18 19
29 rocks += 20 21 22 23 24 25 26 27 28 29
30 rocks += 30 31 32 33 34 35 36 37 38 39
31 rocks += 40 41 42 43 44 45 46 47 48 49
32 rocks := $(rocks:%=data\rock%.png)
33 graphics := data\ship.png data\life.png data\font.png $(rocks)
34
35
36 .PHONY: all clean
37
38 all: vor
39
40 %.o: %.c
41         $(CC) $(CFLAGS) -c -o $@ $<
42
43 $(my_objects): vorconfig.h
44
45 font.o: font.h
46
47 args.o: args.h
48
49 dust.o: globals.h dust.h mt.h
50
51 file.o: file.h common.h
52
53 main.o: args.h common.h dust.h file.h globals.h mt.h rocks.h score.h sprite.h sound.h
54
55 mt.o: mt.h
56
57 rocks.o: rocks.h common.h file.h globals.h mt.h sprite.h
58
59 score.o: score.h common.h file.h
60
61 sound.o: sound.h args.h common.h
62
63 sprite.o: sprite.h common.h
64
65 vor: $(objects)
66         $(CC) $^ $(LDFLAGS) -o $@
67
68 clean: 
69         del vor
70         del *.o