1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#
# Copyright 2007 Milan Babuskov
#
# This file is part of Vodovod game
#
# Vodovod is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# Vodovod is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Vodovod in file COPYING; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# directory where the games are installed (/usr, /usr/local, ... or something)
ifndef PREFIX
PREFIX=/usr
endif
DATADIR?=.
PROGRAM = vodovod
OBJECTS = game.o map.o resource.o main.o allmenus.o njamfont.o sutils.o menu.o hiscore.o effects.o config.o keys.o
CXX = g++
LDFLAGS=`dpkg-buildflags --get LDFLAGS`
# If you hate warnings under Cygwin use these flags instead
# MY_CFLAGS = -I/usr/local/include/SDL -Dmain=SDL_main -DWIN32 -Uunix -mno-cygwin
MY_CFLAGS = `sdl-config --cflags` -DDATADIR=\"$(DATADIR)\"
MY_CFLAGS += `dpkg-buildflags --get CFLAGS`
MY_CFLAGS += `dpkg-buildflags --get CPPFLAGS`
MY_CFLAGS += `dpkg-buildflags --get CXXFLAGS`
%.o: %.cpp
$(CXX) -c $(MY_CFLAGS) $< -o $@
all: $(PROGRAM)
$(PROGRAM): $(OBJECTS)
$(CXX) $(LDFLAGS) `sdl-config --libs` -o$(PROGRAM) $(OBJECTS) -lSDL -lSDL_image -lSDL_mixer
clean:
$(RM) *.o
$(RM) $(PROGRAM)
$(RM) $(PROGRAM).exe
|