Changeset a90dc0 in git
- Timestamp:
- Aug 21, 2001, 3:59:32 PM (22 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 28ffaa839e0746a838155fb491e13df051251c68
- Parents:
- 22e3fe8c4a103f035dea126cdb127a25a03aebce
- Location:
- omalloc
- Files:
-
- 1 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
omalloc/Makefile.in
r22e3fe8 ra90dc0 4 4 ### Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 ### Created: 11/99 6 ### Version: $Id: Makefile.in,v 1.1 1 2001-04-30 09:01:57Singular Exp $6 ### Version: $Id: Makefile.in,v 1.12 2001-08-21 13:59:30 Singular Exp $ 7 7 ################################################################# 8 8 … … 76 76 ASO_SOURCES = 77 77 78 HEADERS= mylimits.h\78 HEADERS= mylimits.h omlimits.h \ 79 79 om_Alloc.h omList.h omDerivedConfig.h \ 80 80 omAllocDecl.h omConfig.h omMemOps.h \ … … 96 96 97 97 DISTFILES=$(SOURCES) $(HEADERS) omtTest.h makeheader.pl Makefile.in \ 98 omConfig.h.in mylimits.h configure.in mkinstalldirs install-sh configure98 omConfig.h.in omlimits.h.in mylimits.h configure.in mkinstalldirs install-sh configure 99 99 100 100 ## 101 101 ## Build Targets 102 102 ## 103 %.o: %.c omConfig.h mylimits.h omTables.h omalloc.h omTables.inc103 %.o: %.c omConfig.h omlimits.h omTables.h omalloc.h omTables.inc 104 104 ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $< 105 105 106 %.o_ndebug: %.c omConfig.h mylimits.h omTables.h omalloc.h omTables.inc106 %.o_ndebug: %.c omConfig.h omlimits.h mylimits.h omTables.h omalloc.h omTables.inc 107 107 ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -DOM_NDEBUG -c $< -o $@ 108 108 … … 118 118 lib: libomalloc.a 119 119 120 libomalloc.a: $(OBJS) Makefile omConfig.h mylimits.h120 libomalloc.a: $(OBJS) Makefile omConfig.h omlimits.h mylimits.h 121 121 rm -f $@ 122 122 $(AR) cr $@ $(OBJS) 123 123 $(RANLIB) $@ 124 124 125 libomalloc_ndebug.a: $(OBJS_NDEBUG) Makefile omConfig.h mylimits.h125 libomalloc_ndebug.a: $(OBJS_NDEBUG) Makefile omConfig.h omlimits.h mylimits.h 126 126 rm -f $@ 127 127 $(AR) cr $@ $(OBJS_NDEBUG) … … 143 143 ./omTables 1 >$@ 144 144 145 omTables: omAllocPrivate.h omConfig.h omTables.c mylimits.h145 omTables: omAllocPrivate.h omConfig.h omTables.c omlimits.h mylimits.h 146 146 ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -DOM_GENERATE_INC omTables.c -o omTables 147 147 … … 169 169 # configure related stuff 170 170 # 171 omConfig.h omMalloc.h mylimits.h: stamp-h172 173 stamp-h : config.status omConfig.h.in mylimits.h.in ${OM_MALLOC_HEADER}174 CONFIG_FILES= CONFIG_HEADERS="omConfig.h mylimits.h omMalloc.h:${OM_MALLOC_HEADER}" ./config.status171 omConfig.h omMalloc.h omlimits.h mylimits.h: stamp-h 172 173 stamp-h : config.status omConfig.h.in omlimits.h.in ${OM_MALLOC_HEADER} 174 CONFIG_FILES= CONFIG_HEADERS="omConfig.h omlimits.h omMalloc.h:${OM_MALLOC_HEADER}" ./config.status 175 175 176 176 Makefile: Makefile.in config.status … … 199 199 $(INSTALL_DATA) omalloc.o omalloc_debug.o $(libdir) 200 200 $(INSTALL_DATA) omalloc.h omalloc.c $(includedir) 201 $(INSTALL_DATA) mylimits.h omalloc.c $(includedir)201 $(INSTALL_DATA) omlimits.h mylimits.h omalloc.c $(includedir) 202 202 203 203 … … 229 229 -rm -f *~ .\#* stamp-h configure omMalloc.h 230 230 rm -rf omalloc-$(VERSION) 231 -rm -f omConfig.h mylimits.h Makefile TAGS* tags config.status config.cache config.log231 -rm -f omConfig.h omlimits.h Makefile TAGS* tags config.status config.cache config.log 232 232 233 233 srcclean: distclean … … 238 238 .PHONY: TAGS 239 239 240 TAGS: omConfig.h.in mylimits.h.in241 etags omConfig.h.in mylimits.h.in $(SOURCES) $(HEADERS)240 TAGS: omConfig.h.in omlimits.h.in 241 etags omConfig.h.in omlimits.h.in $(SOURCES) $(HEADERS) 242 242 243 243 ## … … 265 265 OBJG := $(CSOURCES:.c=.og) $(GSOURCES:.c=.og) 266 266 267 %.og: %.c omConfig.h omTables.h omalloc.h mylimits.h 267 %.og: %.c omConfig.h omTables.h omalloc.h mylimits.h omlimits.h 268 268 $(CCG) ${CFLAGSG} ${CPPFLAGS} ${DEFSG} -c $< -o $@ 269 269 270 270 libg: libomalloc_g.a 271 271 272 libomalloc_g.a: $(OBJG) Makefile omConfig.h mylimits.h 272 libomalloc_g.a: $(OBJG) Makefile omConfig.h mylimits.h omlimits.h 273 273 rm -f $@ 274 274 $(AR) cr $@ $(OBJG) … … 281 281 OBJD := $(CSOURCES:%.c=%_d.og) $(GSOURCES:%.c=%_d.og) 282 282 283 %_d.c : %.c omConfig.h omTables.h omalloc.h mylimits.h 283 %_d.c : %.c omConfig.h omTables.h omalloc.h mylimits.h omlimits.h 284 284 $(CCG) -E -P $< | $(PERL) -p -e 's/;/;\n/g' | $(PERL) -p -e 's/\{/\n\{/g' | $(PERL) -p -e 's/\}/\n\}/g' > $@ 285 285 .PRECIOUS: %_d.c … … 287 287 libd: libomalloc_d.a 288 288 289 libomalloc_d.a: $(OBJD) Makefile omConfig.h mylimits.h 289 libomalloc_d.a: $(OBJD) Makefile omConfig.h mylimits.h omlimits.h 290 290 rm -f $@ 291 291 $(AR) cr $@ $(OBJD) … … 307 307 ## Profile Targets 308 308 ## 309 %.op: %.c omConfig.h omTables.h omalloc.h mylimits.h 309 %.op: %.c omConfig.h omTables.h omalloc.h mylimits.h omlimits.h 310 310 $(CCP) ${CFLAGSP} ${CPPFLAGS} ${DEFSP} -c $< -o $@ 311 311 312 312 libp: libomalloc_p.a 313 313 314 libomalloc_p.a: $(OBJP) Makefile omConfig.h mylimits.h 314 libomalloc_p.a: $(OBJP) Makefile omConfig.h mylimits.h omlimits.h 315 315 rm -f $@ 316 316 $(AR) cr $@ $(OBJP) … … 335 335 ## Profile Targets 336 336 ## 337 %.ob: %.c omConfig.h omTables.h omalloc.h mylimits.h 337 %.ob: %.c omConfig.h omTables.h omalloc.h mylimits.h omlimits.h 338 338 $(CCB) ${CFLAGSB} ${CPPFLAGS} ${DEFSB} -c $< -o $@ 339 339 340 340 libb: libomalloc_b.a 341 341 342 libomalloc_b.a: $(OBJB) Makefile omConfig.h mylimits.h 342 libomalloc_b.a: $(OBJB) Makefile omConfig.h mylimits.h omlimits.h 343 343 rm -f $@ 344 344 $(AR) cr $@ $(OBJB) … … 390 390 ## Dependencies 391 391 ## 392 %.d: %.c omConfig.h mylimits.h Makefile omTables.h omTables.inc omalloc.h 392 %.d: %.c omConfig.h mylimits.h Makefile omTables.h omTables.inc omalloc.h omlimits.h 393 393 echo $(@:.d=.o_ndebug) $(@:.d=.og) $(@:.d=.od) $(@:.d=.op) $(@:.d=.ob) $(@:.d=_d.c) $(@:.d=.om)" " \\ > $@ 394 394 $(CCM) ${CPPFLAGS} ${DEFSG} $< >> $@ 395 395 396 depend: $(CSOURCES:.c=.d) omConfig.h mylimits.h $(TESTSOURCES:.c=.d)396 depend: $(CSOURCES:.c=.d) omConfig.h omlimits.h mylimits.h $(TESTSOURCES:.c=.d) 397 397 cat *.d >depend 398 398 -
omalloc/configure
r22e3fe8 ra90dc0 2608 2608 ac_given_INSTALL="$INSTALL" 2609 2609 2610 trap 'rm -fr `echo "Makefile omConfig.h mylimits.h omMalloc.h:${OM_MALLOC_HEADER}" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 152610 trap 'rm -fr `echo "Makefile omConfig.h omlimits.h omMalloc.h:${OM_MALLOC_HEADER}" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 2611 2611 EOF 2612 2612 cat >> $CONFIG_STATUS <<EOF … … 2778 2778 EOF 2779 2779 cat >> $CONFIG_STATUS <<EOF 2780 CONFIG_HEADERS="omConfig.h mylimits.h omMalloc.h:${OM_MALLOC_HEADER}"2780 CONFIG_HEADERS="omConfig.h omlimits.h omMalloc.h:${OM_MALLOC_HEADER}" 2781 2781 EOF 2782 2782 cat >> $CONFIG_STATUS <<\EOF -
omalloc/configure.in
r22e3fe8 ra90dc0 4 4 dnl Author: obachman@mathematik.uni-kl.de (Olaf Bachmann) 5 5 dnl Created: 11/99 6 dnl Version: $Id: configure.in,v 1.1 4 2001-05-15 12:19:38Singular Exp $6 dnl Version: $Id: configure.in,v 1.15 2001-08-21 13:59:31 Singular Exp $ 7 7 dnl lllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll 8 8 … … 596 596 dnl wrap it up 597 597 dnl 598 AC_CONFIG_HEADER(omConfig.h mylimits.h omMalloc.h:${OM_MALLOC_HEADER})598 AC_CONFIG_HEADER(omConfig.h omlimits.h omMalloc.h:${OM_MALLOC_HEADER}) 599 599 600 600 AC_OUTPUT(Makefile, \ -
omalloc/omlimits.h.in
r22e3fe8 ra90dc0 5 5 * Author: hannes (Hans Schoenemann) 6 6 * Created: 03/01 7 * Version: $Id: mylimits.h.in,v 1.6 2001-05-17 14:28:08Singular Exp $7 * Version: $Id: omlimits.h.in,v 1.1 2001-08-21 13:59:32 Singular Exp $ 8 8 *******************************************************************/ 9 9 #ifndef MYLIMITS_H
Note: See TracChangeset
for help on using the changeset viewer.