From: helge Date: Sun, 26 Sep 2004 17:30:11 +0000 (+0000) Subject: fixed makefiles X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d14602713519fd659b9e8949ff8cd9268f94abad;p=sope fixed makefiles git-svn-id: http://svn.opengroupware.org/SOPE/trunk@170 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- diff --git a/sope-ical/samples/ChangeLog b/sope-ical/samples/ChangeLog index 63627214..5281722d 100644 --- a/sope-ical/samples/ChangeLog +++ b/sope-ical/samples/ChangeLog @@ -1,3 +1,7 @@ +2004-09-26 Helge Hess + + * GNUmakefile.preamble: fixed makefiles for SOPE inline compilation + 2004-08-29 Helge Hess * added hack to install the tools in FHS locations - the executables diff --git a/sope-ical/samples/GNUmakefile.preamble b/sope-ical/samples/GNUmakefile.preamble index c6ea250e..1619772e 100644 --- a/sope-ical/samples/GNUmakefile.preamble +++ b/sope-ical/samples/GNUmakefile.preamble @@ -1,21 +1,23 @@ -# $Id: GNUmakefile.preamble 9 2004-08-20 18:40:42Z helge $ +# compilation flags + +SOPE_CORE="../../sope-core" +SOPE_XML="../../sope-xml" ADDITIONAL_INCLUDE_DIRS += \ -I.. \ - -I../NGStreams \ - -I../NGExtensions \ + -I$(SOPE_CORE)/NGStreams \ + -I$(SOPE_CORE)/NGExtensions \ ADDITIONAL_LIB_DIRS += \ - -L../../sope-core/EOControl/$(GNUSTEP_OBJ_DIR) \ - -L../../sope-core/NGExtensions/$(GNUSTEP_OBJ_DIR) \ - -L../../sope-core/NGStreams/$(GNUSTEP_OBJ_DIR) \ - -L../../sope-xml/DOM/$(GNUSTEP_OBJ_DIR) \ - -L../../sope-xml/SaxObjC/$(GNUSTEP_OBJ_DIR) \ - -L../NGiCal/$(GNUSTEP_OBJ_DIR) \ + -L../NGiCal/$(GNUSTEP_OBJ_DIR) \ + -L$(SOPE_CORE)/EOControl/$(GNUSTEP_OBJ_DIR) \ + -L$(SOPE_CORE)/NGExtensions/$(GNUSTEP_OBJ_DIR) \ + -L$(SOPE_CORE)/NGStreams/$(GNUSTEP_OBJ_DIR) \ + -L$(SOPE_XML)/DOM/$(GNUSTEP_OBJ_DIR) \ + -L$(SOPE_XML)/SaxObjC/$(GNUSTEP_OBJ_DIR) \ -L/usr/local/lib -L/usr/lib ADDITIONAL_TOOL_LIBS += \ -lNGStreams -lNGExtensions -lEOControl \ -lDOM -lSaxObjC -