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.macosx

48 lines
997 B
Plaintext
Raw Normal View History

2011-02-27 19:28:28 +02:00
VERSION := 1.3.3
2010-08-01 21:34:42 +03:00
DESTDIR=
BIN=
DATAPATH=.
STEADPATH=$(DATAPATH)/stead
THEMESPATH=$(DATAPATH)/themes
GAMESPATH=$(DATAPATH)/games
ICONPATH=$(DATAPATH)/icon
LANGPATH=$(DATAPATH)/languages
DOCPATH=
MANPATH=
SYSTEMSETUP=no
ZLIB_CFLAGS=
ZLIB_LFLAGS=-lz
LUA_CFLAGS=$(shell pkg-config --cflags lua5.1)
LUA_LFLAGS=$(shell pkg-config --libs lua5.1)
# for arch linux, fedora (may be others) 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
2010-09-28 07:07:39 +03:00
CFLAGS += -Wall -Dunix -D_USE_UNPACK -D_USE_BROWSE -D_SDL_MOD_BUG
2010-08-01 21:34:42 +03:00
INSTALLD=echo "Do not install standalone version!"
INSTALLB=echo "Do not install standalone version!"
INSTALL=echo "Do not install standalone version!"
2010-09-25 19:55:13 +03:00
LN=echo "Do not install standalone version!"
2010-08-01 21:34:42 +03:00
EXE=
PLATFORM=macosx.m
ADDOBJ=macosx.o
macosx.o : macosx.m
$(CC) -c $(<) $(I) $(CFLAGS)
RESOURCES=
RM=rm
AR=ar rc
RANLIB=ranlib