Changeset 630ca9 in git for libpolys/resources
- Timestamp:
- Mar 23, 2011, 6:39:21 PM (13 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 20d9284f2e2a49cb47ad41808ddefe8b058c7647
- Parents:
- 1b49fffcc09b3cc35d86a2d919252c972d6515eb
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-03-23 18:39:21+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:12+01:00
- Location:
- libpolys/resources
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/resources/Makefile.am
r1b49ff r630ca9 1 1 lib_LIBRARIES=libresources.a libresources_g.a 2 2 3 AM_CFLAGS = -O3 -w -fomit-frame-pointer ${PIPE} 4 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 5 AM_CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 6 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. 7 AM_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 3 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 4 5 libresources_a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 6 libresources_g_a_CFLAGS = ${PIPE} 7 8 libresources_a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 9 libresources_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 10 # -fdiagnostics-show-option 11 12 libresources_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 13 libresources_g_a_CPPFLAGS = -DHAVE_CONFIG_H 14 15 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. 8 16 9 17 SOURCES = feFopen.cc feResource.cc 10 11 libresources_a_SOURCES = $(SOURCES) 12 13 libresources_a_includedir=$(includedir)/libpolys/resources 14 15 libresources_a_include_HEADERS = feFopen.h feResource.h 16 18 libresources_a_SOURCES = $(SOURCES) 17 19 libresources_g_a_SOURCES = $(SOURCES) 18 20 19 libresources_g_a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long 20 # -fdiagnostics-show-option 21 libresources_a_includedir =$(includedir)/libpolys/resources 22 libresources_g_a_includedir=$(includedir)/libpolys/resources 23 24 RESOURCESHEADERS = feFopen.h feResource.h 25 libresources_a_include_HEADERS = $(RESOURCESHEADERS) 26 libresources_g_a_include_HEADERS = $(RESOURCESHEADERS) 27 28 29 -
libpolys/resources/configure.ac
r1b49ff r630ca9 3 3 4 4 AC_PREREQ([2.65]) 5 AC_INIT([ FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])5 AC_INIT([resources], [3.1.2.sw]) 6 6 AM_INIT_AUTOMAKE 7 7 AC_CONFIG_SRCDIR([feFopen.h]) … … 14 14 AC_PROG_INSTALL 15 15 AC_PROG_RANLIB 16 AM_PROG_CC_C_O 16 17 17 18 # Checks for libraries. -
libpolys/resources/feFopen.cc
r1b49ff r630ca9 6 6 #include <unistd.h> 7 7 8 #include <resources/config.h> 9 8 #include "config.h" 10 9 #include <misc/auxiliary.h> 11 10 -
libpolys/resources/feResource.cc
r1b49ff r630ca9 11 11 #include <string.h> 12 12 13 #include <resources/config.h> 14 13 #include "config.h" 15 14 #include <misc/auxiliary.h> 16 15
Note: See TracChangeset
for help on using the changeset viewer.