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

30 lines
653 B
Plaintext
Raw Normal View History

2009-08-28 19:36:10 +03:00
VERSION := \"0.8.7\"
2009-02-21 12:52:44 +02:00
DESTDIR=/usr/local
2009-08-26 08:25:53 +03:00
BIN=$(DESTDIR)/bin/
2009-02-21 12:52:44 +02:00
STEADPATH=$(DESTDIR)/share/stead
2009-08-26 08:25:53 +03:00
THEMESPATH=$(STEADPATH)/themes
GAMESPATH=$(STEADPATH)/games
ICONPATH=$(DESTDIR)/share/pixmaps
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-08-26 08:25:53 +03:00
CFLAGS += -Wall -D_HAVE_ICONV -DRUSSIAN
2009-02-21 12:52:44 +02:00
2009-08-26 08:25:53 +03:00
INSTALLD=install -d -m 0775
INSTALL=install -m 0775
EXE=
PLATFORM=unix.c
RESOURCES=
2009-02-21 12:52:44 +02:00