arabica/test/XPath_wide/Makefile

40 lines
948 B
Makefile
Raw Normal View History

2005-10-17 23:24:43 +02:00
-include ../../Makefile.header
-include ../../Makefile.common
2005-10-17 23:24:43 +02:00
######################################
# ADDITIONAL BUILD FLAGS
INCS_DIRS += -I../..
LIBS_DIRS += -L../../bin
STATIC_LIBS +=
DYNAMIC_LIBS += -lArabica
######################################
# SOURCE FILES
XPATH_SRCS = main.cpp
2005-10-17 23:24:43 +02:00
XPATH_HDRS = $(patsubst %.cpp,%.h,$(XPATH_SRCS))
XPATH_OBJS = $(patsubst %.cpp,%.o,$(XPATH_SRCS))
######################################
# High level rules
all : xpath_test_wide$(EXESUFFIX)
2005-10-17 23:24:43 +02:00
xpath_test_wide$(EXESUFFIX) : $(XPATH_OBJS) $(CPPUNIT_OBJS)
$(LD) $(LDFLAGS) -o $@ $(XPATH_OBJS) $(CPPUNIT_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(DYNAMIC_LIBS)
$(COPY) xpath_test_wide$(EXESUFFIX) ../../bin
2005-10-17 23:24:43 +02:00
######################
# Compile rules
####
-include ../../Makefile.rules
######################
# Cleaning up
clean :
$(REMOVE) $(CPPUNIT_OBJS) \
2005-10-17 23:24:43 +02:00
$(XPATH_OBJS) \
xpath_test_wide$(EXESUFFIX) \
../../bin/xpath_test_wide$(EXESUFFIX)
2005-10-17 23:24:43 +02:00
# End of File