This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
adventin/Rules.make.system

33 lines
756 B
Plaintext
Raw Normal View History

2009-09-15 07:46:37 +03:00
VERSION := \"0.9\"
2009-02-21 12:52:44 +02:00
2009-08-30 22:58:55 +03:00
PREFIX=/usr/local
DESTDIR=
BIN=$(DESTDIR)$(PREFIX)/bin/
STEADPATH=$(DESTDIR)$(PREFIX)/share/instead
2009-08-26 08:25:53 +03:00
THEMESPATH=$(STEADPATH)/themes
GAMESPATH=$(STEADPATH)/games
2009-08-31 07:49:20 +03:00
ICONPATH=$(DESTDIR)$(PREFIX)/share/pixmaps
2009-08-31 07:52:45 +03:00
DOCPATH=$(DESTDIR)$(PREFIX)/share/doc/instead
LANGPATH=$(STEADPATH)/languages
2009-02-21 12:52:44 +02:00
LUA_CFLAGS=$(shell pkg-config --cflags lua5.1)
LUA_LFLAGS=$(shell pkg-config --libs lua5.1)
2009-02-21 12:56:19 +02:00
# for arch and gentoo linux use this
2009-02-21 12:52:44 +02:00
#
# LUA_CFLAGS=$(shell pkg-config --cflags lua)
# LUA_LFLAGS=$(shell pkg-config --libs lua)
#
SDL_CFLAGS=$(shell sdl-config --cflags)
SDL_LFLAGS=$(shell sdl-config --libs) -lSDL_ttf -lSDL_mixer -lSDL_image
2009-09-09 19:23:28 +03:00
CFLAGS += -Wall -D_HAVE_ICONV
2009-02-21 12:52:44 +02:00
INSTALLD=install -d -m 0755
INSTALL=install -m 0755
2009-08-26 08:25:53 +03:00
EXE=
PLATFORM=unix.c
RESOURCES=
2009-02-21 12:52:44 +02:00