You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
950 B
Plaintext
44 lines
950 B
Plaintext
VERSION := 1.4.6
|
|
|
|
PREFIX=/usr/local
|
|
DESTDIR=
|
|
BIN=$(DESTDIR)$(PREFIX)/bin/
|
|
DATAPATH=$(DESTDIR)$(PREFIX)/share/instead
|
|
STEADPATH=$(DATAPATH)/stead
|
|
THEMESPATH=$(DATAPATH)/themes
|
|
GAMESPATH=$(DATAPATH)/games
|
|
ICONPATH=$(DESTDIR)$(PREFIX)/share/pixmaps
|
|
DOCPATH=$(DESTDIR)$(PREFIX)/share/doc/instead
|
|
LANGPATH=$(DATAPATH)/lang
|
|
MANPATH=$(DESTDIR)$(PREFIX)/share/man/man6
|
|
SYSTEMSETUP=yes
|
|
|
|
ZLIB_CFLAGS=
|
|
ZLIB_LFLAGS=-lz
|
|
|
|
LUA_CFLAGS=$(shell pkg-config --cflags lua5.1)
|
|
LUA_LFLAGS=$(shell pkg-config --libs lua5.1)
|
|
|
|
# for arch and gentoo linux use this
|
|
#
|
|
# 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
|
|
|
|
CFLAGS += -Wall -Dunix -D_USE_UNPACK # -D_SDL_MOD_BUG
|
|
|
|
INSTALLD=install -d -m 0755
|
|
INSTALLB=install -m 0755
|
|
INSTALL=install -m 0644
|
|
LN=ln -sf
|
|
|
|
EXE=
|
|
PLATFORM=unix.c
|
|
RESOURCES=
|
|
RM=rm
|
|
AR=ar rc
|
|
RANLIB=ranlib
|