Changeset 70
- Timestamp:
- 09/16/05 13:52:40 (3 years ago)
- Files:
-
- blossom/trunk/src/Makefile.am (modified) (1 diff)
- blossom/trunk/src/Makefile.in (modified) (1 diff)
- blossom/trunk/src/datatypes (deleted)
- blossom/trunk/src/libblossom/Makefile.am (modified) (2 diffs)
- blossom/trunk/src/libblossom/Makefile.in (modified) (5 diffs)
- blossom/trunk/src/libblossom/dictionary-test.c (copied) (copied from blossom/trunk/src/datatypes/dictionary-test.c)
- blossom/trunk/src/libblossom/dictionary.c (copied) (copied from blossom/trunk/src/datatypes/dictionary.c)
- blossom/trunk/src/libblossom/dictionary.h (copied) (copied from blossom/trunk/src/datatypes/dictionary.h)
- blossom/trunk/src/libblossom/jhash-test.c (copied) (copied from blossom/trunk/src/libjhash/jhash-test.c)
- blossom/trunk/src/libblossom/jhash.c (copied) (copied from blossom/trunk/src/libjhash/jhash.c)
- blossom/trunk/src/libblossom/jhash.h (copied) (copied from blossom/trunk/src/libjhash/jhash.h)
- blossom/trunk/src/libblossom/x_tree.c (copied) (copied from blossom/trunk/src/datatypes/x_tree.c)
- blossom/trunk/src/libblossom/x_tree.h (copied) (copied from blossom/trunk/src/datatypes/x_tree.h)
- blossom/trunk/src/libjhash (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
blossom/trunk/src/Makefile.am
r68 r70 1 1 ## Process this file with automake to produce Makefile.in 2 2 3 #SUBDIRS = libjhash datatypes libblossom tools examples tests 4 SUBDIRS = libjhash datatypes libblossom tools cgi-bin 5 6 ## Do not edit or modify anything in this comment block. 7 ## The following line is a file identity tag for the GNU Arch 8 ## revision control system. 9 ## 10 ## arch-tag: 4A142BDA-BF88-11D8-A486-000A95C7E2B6 3 #SUBDIRS = libblossom tools examples tests 4 SUBDIRS = libblossom tools cgi-bin blossom/trunk/src/Makefile.in
r68 r70 168 168 target_vendor = @target_vendor@ 169 169 170 #SUBDIRS = lib jhash datatypes libblossom tools examples tests171 SUBDIRS = lib jhash datatypes libblossom tools cgi-bin170 #SUBDIRS = libblossom tools examples tests 171 SUBDIRS = libblossom tools cgi-bin 172 172 all: all-recursive 173 173 blossom/trunk/src/libblossom/Makefile.am
r68 r70 9 9 noinst_HEADERS = \ 10 10 private.h \ 11 xini.h 11 jhash.h \ 12 dictionary.h \ 13 xini.h \ 14 x_tree.h 12 15 13 16 # Libraries to build … … 18 21 config.c \ 19 22 datestamp.c \ 23 dictionary.c \ 20 24 flavour.c \ 21 25 input.c \ 26 jhash.c \ 22 27 path.c \ 23 28 template.c \ 24 xini.c 29 xini.c \ 30 x_tree.c 25 31 26 32 libblossom_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@ 27 libblossom_la_LIBADD = \28 $(top_builddir)/src/libjhash/libjhash.a \29 $(top_builddir)/src/datatypes/libdatatypes.a30 33 34 ##TESTS = jhash-test 31 35 ##TESTS = xini-test 36 ##TESTS = dictionary-test 32 37 33 38 ##noinst_PROGRAMS = $(TESTS) 34 39 40 ##jhash_test_SOURCES = jhash-test.c jhash.c 41 42 ##dictionary_test_SOURCES = dictionary-test.c dictionary.c x_tree.c jhash.c 35 43 ##xini_test_SOURCES = xini.c xini.h xini-test.c 36 ## Do not edit or modify anything in this comment block.37 ## The following line is a file identity tag for the GNU Arch38 ## revision control system.39 ##40 ## arch-tag: 4A0A1468-BF88-11D8-88D7-000A95C7E2B6blossom/trunk/src/libblossom/Makefile.in
r68 r70 52 52 libLTLIBRARIES_INSTALL = $(INSTALL) 53 53 LTLIBRARIES = $(lib_LTLIBRARIES) 54 libblossom_la_DEPENDENCIES = $(top_builddir)/src/libjhash/libjhash.a \ 55 $(top_builddir)/src/datatypes/libdatatypes.a 54 libblossom_la_LIBADD = 56 55 am_libblossom_la_OBJECTS = blossom.lo config.lo datestamp.lo \ 57 flavour.lo input.lo path.lo template.lo xini.lo 56 dictionary.lo flavour.lo input.lo jhash.lo path.lo template.lo \ 57 xini.lo x_tree.lo 58 58 libblossom_la_OBJECTS = $(am_libblossom_la_OBJECTS) 59 59 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) … … 61 61 am__depfiles_maybe = depfiles 62 62 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/blossom.Plo ./$(DEPDIR)/config.Plo \ 63 @AMDEP_TRUE@ ./$(DEPDIR)/datestamp.Plo ./$(DEPDIR)/flavour.Plo \ 64 @AMDEP_TRUE@ ./$(DEPDIR)/input.Plo ./$(DEPDIR)/path.Plo \ 65 @AMDEP_TRUE@ ./$(DEPDIR)/template.Plo ./$(DEPDIR)/xini.Plo 63 @AMDEP_TRUE@ ./$(DEPDIR)/datestamp.Plo \ 64 @AMDEP_TRUE@ ./$(DEPDIR)/dictionary.Plo ./$(DEPDIR)/flavour.Plo \ 65 @AMDEP_TRUE@ ./$(DEPDIR)/input.Plo ./$(DEPDIR)/jhash.Plo \ 66 @AMDEP_TRUE@ ./$(DEPDIR)/path.Plo ./$(DEPDIR)/template.Plo \ 67 @AMDEP_TRUE@ ./$(DEPDIR)/x_tree.Plo ./$(DEPDIR)/xini.Plo 66 68 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 67 69 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) … … 194 196 noinst_HEADERS = \ 195 197 private.h \ 196 xini.h 198 jhash.h \ 199 dictionary.h \ 200 xini.h \ 201 x_tree.h 197 202 198 203 … … 203 208 config.c \ 204 209 datestamp.c \ 210 dictionary.c \ 205 211 flavour.c \ 206 212 input.c \ 213 jhash.c \ 207 214 path.c \ 208 215 template.c \ 209 xini.c 216 xini.c \ 217 x_tree.c 210 218 211 219 libblossom_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@ 212 libblossom_la_LIBADD = \213 $(top_builddir)/src/libjhash/libjhash.a \214 $(top_builddir)/src/datatypes/libdatatypes.a215 216 220 all: all-am 217 221 … … 288 292 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config.Plo@am__quote@ 289 293 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/datestamp.Plo@am__quote@ 294 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dictionary.Plo@am__quote@ 290 295 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/flavour.Plo@am__quote@ 291 296 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/input.Plo@am__quote@ 297 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/jhash.Plo@am__quote@ 292 298 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/path.Plo@am__quote@ 293 299 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/template.Plo@am__quote@ 300 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x_tree.Plo@am__quote@ 294 301 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xini.Plo@am__quote@ 295 302
