mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
110 lines
2.5 KiB
Makefile
110 lines
2.5 KiB
Makefile
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
REMOVE = rm -rf
|
|
LINK = ln -sf
|
|
# C/C++ shortcuts
|
|
CPP = /usr/local/bin/gcc
|
|
|
|
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
# Compile and link flags...
|
|
#
|
|
# -c Produce object code.
|
|
# -Wall Max warning level.
|
|
# -Werror Treat warnings as errors.
|
|
# -O2 Turn on medium optimisations.
|
|
# -g Add debug information.
|
|
# -D Define symbolic constant.
|
|
# -fPIC Generate position independent code.
|
|
# -shared Produce a sharable object.
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
COMPILE_FLAGS = -Wall -c -shared
|
|
|
|
LINK_FLAGS = -Wall -Werror -shared -Wl
|
|
|
|
# Uncomment for optimisations
|
|
# COMPILE_FLAGS += -02
|
|
# LINK_FLAGS += -02
|
|
|
|
# Uncomment for debug version
|
|
# COMPILE_FLAGS += -g -D__DEBUG__
|
|
# LINK_FLAGS += -g -D__DEBUG__
|
|
|
|
|
|
# Includes and library directories
|
|
#INCS_DIRS = -I.. -I/usr/local/include/stlport
|
|
INCS_DIRS = -I..
|
|
|
|
LIBS_DIRS =
|
|
|
|
STATIC_LIBS =
|
|
DYNAMIC_LIBS =
|
|
|
|
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
# Source files
|
|
|
|
SRCS = XMLCharacterClasses.cpp
|
|
|
|
HDRS = $(patsubst %.c,%.h,$(patsubst %.cpp,%.h,$(SRCS)))
|
|
OBJS = $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(SRCS)))
|
|
|
|
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
# High level rules
|
|
|
|
all : libArabicaXML.a
|
|
|
|
libArabicaXML.so : $(OBJS)
|
|
$(CPP) $(LIB_DIRS) $(LINK_FLAGS) -o $@ $(OBJS)
|
|
$(LINK) $@ $@.1
|
|
|
|
libArabicaXML.a : $(OBJS)
|
|
ar r $@ $(OBJS)
|
|
cp *.a ../bin
|
|
|
|
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
# Compile rules
|
|
|
|
%.o : %.cpp
|
|
$(CPP) $(COMPILE_FLAGS) $(INCS_DIRS) -o $@ $<
|
|
|
|
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
# Dependencies
|
|
|
|
depend : .depend
|
|
|
|
.depend ::
|
|
$(CPP) $(COMPILE_FLAGS) $(INCS_DIRS) -MM $(SRCS) > .depend
|
|
|
|
-include .depend
|
|
|
|
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
# Cleaning up
|
|
|
|
clean :
|
|
$(REMOVE) .depend *.o lib* *~ core ../bin/libArabicaXML*
|
|
|
|
|
|
|
|
#/////////////////////////////////////////////////////////////////////////
|
|
#//////////////////////////////////////////////
|
|
|
|
# End of File
|