From: stephan b. <sg...@us...> - 2004-12-23 04:59:34
|
Update of /cvsroot/pclasses/pclasses2/include/pclasses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21672 Modified Files: Makefile.toc Log Message: added Phoenix and Factory Index: Makefile.toc =================================================================== RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/Makefile.toc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile.toc 23 Dec 2004 00:18:59 -0000 1.1 +++ Makefile.toc 23 Dec 2004 04:59:26 -0000 1.2 @@ -1,23 +1,10 @@ -################################################### -# AUTO-GENERATED guess at a toc-aware Makefile, -# based off of the contents of directory: -# ./include/pclasses -# Created by ./toc/bin/create_makefile_stubs.sh -# Wed Dec 22 23:10:45 CET 2004 -# It must be tweaked to suit your needs. -################################################### +#!/usr/bin/make -f + include toc.make + SUBDIRS = Net System Util -DIST_FILES += pclasses_config.h.at -############## FLEXES: -# WARNING: FLEXES stuff only works for C++-based flexers -FLEXES = -FLEXES_ARGS = -+ -p -OBJECTS += -include $(TOC_MAKESDIR)/flex.make -# Run target FLEXES to process these. -# REMINDER: add the generated C++ files to your SOURCES, if needed. -############## /FLEXES + + HEADERS = Algorithm.h \ Alloc.h \ Atomic.h \ @@ -27,6 +14,7 @@ Char.h \ CircularQueue.h \ Exception.h \ + Factory.h \ IntrusivePtr.h \ IntTypeLimits.h \ IntTypes.h \ @@ -37,6 +25,7 @@ NonCopyable.h \ Pair.h \ pclasses_config.h \ + Phoenix.h \ Queue.h \ ScopedArrayPtr.h \ ScopedPtr.h \ @@ -48,10 +37,12 @@ TypeTraits.h \ ValueType.h \ Vector.h -DIST_FILES += $(HEADERS) -INSTALL_PACKAGE_HEADERS += $(HEADERS) + +CONF_H = pclasses-config.h +CONF_H_IN = pclasses-config.h.at +INSTALL_PACKAGE_HEADERS += $(HEADERS) $(CONF_H) + +DIST_FILES += $(HEADERS) $(CONF_H_IN) +DISTCLEAN_FILES += $(CONF_H) all: -################################################### -# end auto-generated rules -################################################### |