zengine/config

28 lines
622 B
Plaintext
Raw Normal View History

2002-12-05 03:17:12 +00:00
#Config file for ZEngine#
#Edit only this file#
2003-07-11 23:06:20 +00:00
BUILD= ZEngine-0.8.4
2002-12-05 03:17:12 +00:00
#Define compiler commands:
CC= g++
AR= ar rcs
#Define compiler options:
WARN=-W -Wall
LIBS=-lZEngineS -lSDL_mixer -lSDL_image -lSDL_ttf -lSDLmain -lSDL -lGL
INC_PATH=-I/usr/include/SDL
#Define install location:
INSTALL_ROOT= /usr/local
INSTALL_INC= $(INSTALL_ROOT)/include/$(BUILD)
INSTALL_LIB= $(INSTALL_ROOT)/lib
INSTALL_DOC= $(INSTALL_ROOT)/doc/$(BUILD)
############change nothing below this line#################
LIB= $(ZE)/lib
SRC= $(ZE)/src
TEST = $(ZE)/test
INCLUDE_PATH = -I$(ZE)/include $(INC_PATH)
2003-01-03 04:00:11 +00:00
CFLAGS = -O2 $(WARN) $(INCLUDE_PATH)