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

24 lines
553 B
Plaintext
Raw Normal View History

2009-02-22 10:14:09 +02:00
VERSION := \"0.7.4\"
2009-02-21 12:52:44 +02:00
DESTDIR=/usr/local
BIN=$(DESTDIR)/bin
STEADPATH=$(DESTDIR)/share/stead
THEMESPATH=$(DESTDIR)/share/stead/themes
GAMESPATH=$(DESTDIR)/share/stead/games
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-02-21 12:56:19 +02:00
CFLAGS += -Wall -DHAVE_ICONV -DRUSSIAN
2009-02-21 12:52:44 +02:00