mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-29 08:36:45 +01:00
*** empty log message ***
This commit is contained in:
parent
ad5c42953c
commit
b50625e4fa
1 changed files with 10 additions and 7 deletions
17
SAX/Makefile
17
SAX/Makefile
|
@ -11,8 +11,11 @@ OS_VER := $(shell uname -s | sed -e s/\[\.\ \]/_/g)
|
||||||
# For other make (like Sun's) you can try:
|
# For other make (like Sun's) you can try:
|
||||||
# OS_VER:sh =uname -sr | sed -e s/\[\.\ \]/_/g
|
# OS_VER:sh =uname -sr | sed -e s/\[\.\ \]/_/g
|
||||||
|
|
||||||
# C/C++ shortcuts
|
# C++ compiler
|
||||||
CXX = c++
|
CXX = gcc
|
||||||
|
# preprocessor
|
||||||
|
CPP = gcc -E
|
||||||
|
|
||||||
|
|
||||||
#/////////////////////////////////////////////////////////////////////////
|
#/////////////////////////////////////////////////////////////////////////
|
||||||
#//////////////////////////////////////////////
|
#//////////////////////////////////////////////
|
||||||
|
@ -54,8 +57,8 @@ LIBS_DIRS =
|
||||||
STATIC_LIBS =
|
STATIC_LIBS =
|
||||||
DYNAMIC_LIBS = -lstdc++
|
DYNAMIC_LIBS = -lstdc++
|
||||||
|
|
||||||
CXXFLAGS += ${INCS_DIRS}
|
CXXFLAGS += $(INCS_DIRS)
|
||||||
LDFLAGS += ${DYNAMIC_LIBS}
|
LDFLAGS += $(DYNAMIC_LIBS)
|
||||||
|
|
||||||
#/////////////////////////////////////////////////////////////////////////
|
#/////////////////////////////////////////////////////////////////////////
|
||||||
#//////////////////////////////////////////////
|
#//////////////////////////////////////////////
|
||||||
|
@ -103,9 +106,9 @@ libArabica.a : $(OBJS)
|
||||||
|
|
||||||
# Compile rules
|
# Compile rules
|
||||||
saxlib.cpp : ParserConfig.S saxlib.S ArabicaConfig.S
|
saxlib.cpp : ParserConfig.S saxlib.S ArabicaConfig.S
|
||||||
$(PREPROCESS.S) $(PARSER_CONFIG) -o ArabicaConfig.h ArabicaConfig.S
|
$(CPP) $(PARSER_CONFIG) -o ArabicaConfig.h ArabicaConfig.S
|
||||||
$(PREPROCESS.S) $(PARSER_CONFIG) -o ParserConfig.h ParserConfig.S
|
$(CPP) $(PARSER_CONFIG) -o ParserConfig.h ParserConfig.S
|
||||||
$(PREPROCESS.S) $(PARSER_CONFIG) -o saxlib.cpp saxlib.S
|
$(CPP) $(PARSER_CONFIG) -o saxlib.cpp saxlib.S
|
||||||
|
|
||||||
|
|
||||||
%.o : %.cpp
|
%.o : %.cpp
|
||||||
|
|
Loading…
Add table
Reference in a new issue