mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +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:
|
||||
# OS_VER:sh =uname -sr | sed -e s/\[\.\ \]/_/g
|
||||
|
||||
# C/C++ shortcuts
|
||||
CXX = c++
|
||||
# C++ compiler
|
||||
CXX = gcc
|
||||
# preprocessor
|
||||
CPP = gcc -E
|
||||
|
||||
|
||||
#/////////////////////////////////////////////////////////////////////////
|
||||
#//////////////////////////////////////////////
|
||||
|
@ -54,8 +57,8 @@ LIBS_DIRS =
|
|||
STATIC_LIBS =
|
||||
DYNAMIC_LIBS = -lstdc++
|
||||
|
||||
CXXFLAGS += ${INCS_DIRS}
|
||||
LDFLAGS += ${DYNAMIC_LIBS}
|
||||
CXXFLAGS += $(INCS_DIRS)
|
||||
LDFLAGS += $(DYNAMIC_LIBS)
|
||||
|
||||
#/////////////////////////////////////////////////////////////////////////
|
||||
#//////////////////////////////////////////////
|
||||
|
@ -103,9 +106,9 @@ libArabica.a : $(OBJS)
|
|||
|
||||
# Compile rules
|
||||
saxlib.cpp : ParserConfig.S saxlib.S ArabicaConfig.S
|
||||
$(PREPROCESS.S) $(PARSER_CONFIG) -o ArabicaConfig.h ArabicaConfig.S
|
||||
$(PREPROCESS.S) $(PARSER_CONFIG) -o ParserConfig.h ParserConfig.S
|
||||
$(PREPROCESS.S) $(PARSER_CONFIG) -o saxlib.cpp saxlib.S
|
||||
$(CPP) $(PARSER_CONFIG) -o ArabicaConfig.h ArabicaConfig.S
|
||||
$(CPP) $(PARSER_CONFIG) -o ParserConfig.h ParserConfig.S
|
||||
$(CPP) $(PARSER_CONFIG) -o saxlib.cpp saxlib.S
|
||||
|
||||
|
||||
%.o : %.cpp
|
||||
|
|
Loading…
Reference in a new issue