File: Makefile.ori

package info (click to toggle)
njam 1.25-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,388 kB
  • sloc: cpp: 3,810; sh: 2,958; perl: 384; ansic: 236; objc: 224; makefile: 112
file content (71 lines) | stat: -rw-r--r-- 2,449 bytes parent folder | download | duplicates (8)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#
# Copyright 2003 Milan Babuskov
#
# This file is part of Njam (http://njam.sourceforge.net).
#
# Njam 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.
#
# Njam 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 Njam 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

PROGRAM = njam
OBJECTS = njam.o njamedit.o njamnet.o njamgame.o njammap.o njamfont.o njamutils.o
CC = g++

# 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`

%.o:	%.cpp
	$(CC) -O3 -c $(MY_CFLAGS) $< -o $@

all:	$(PROGRAM)

$(PROGRAM):	$(OBJECTS)
	$(CC) `sdl-config --libs` -o$(PROGRAM) $(OBJECTS) -lSDL -lSDL_mixer -lSDL_net -lSDL_image

clean:
	$(RM) *.o
	$(RM) $(PROGRAM)
	$(RM) $(PROGRAM).exe

install:	$(PROGRAM)
	mkdir -m 755 -p $(PREFIX)/games/njam
	mkdir -m 755 -p $(PREFIX)/games/njam/data
	mkdir -m 755 -p $(PREFIX)/games/njam/skins
	mkdir -m 755 -p $(PREFIX)/games/njam/html
	mkdir -m 755 -p $(PREFIX)/games/njam/levels
	install -o root -g games -m 755 njam 		$(PREFIX)/games/njam
	install -o root -g games -m 644 data/*  	$(PREFIX)/games/njam/data
	install -o root -g games -m 644 skins/* 	$(PREFIX)/games/njam/skins
	install -o root -g games -m 644 html/* 		$(PREFIX)/games/njam/html
	install -o root -g games -m 6777 levels/* 	$(PREFIX)/games/njam/levels
	echo '#!/bin/sh' > /usr/bin/njam
	echo '$(PREFIX)/games/njam/njam $$1' >> /usr/bin/njam
	chmod 755 /usr/bin/njam
	@echo
	@echo ------------------ Install completed ------------------------------
	@echo Type \"njam\" to play the game.
	@echo You can link \"$(PREFIX)/games/njam/njam\" into menus/toolbars.
	@echo -------------------------------------------------------------------
	@echo

uninstall:
	rm -rf $(PREFIX)/games/njam
	rm -f /usr/bin/njam