comparison src/Makefile.in @ 5235:5f0ad69b5c8c

[project @ 2005-03-22 19:48:16 by jwe]
author jwe
date Tue, 22 Mar 2005 19:48:46 +0000
parents 9b776f5a33eb
children a34c3c5c37cf
comparison
equal deleted inserted replaced
5234:a791b8b777e4 5235:5f0ad69b5c8c
535 @echo "making $@ from $<" 535 @echo "making $@ from $<"
536 @$(GPERF) -t -C -D -G -L C++ -Z octave_kw_hash \ 536 @$(GPERF) -t -C -D -G -L C++ -Z octave_kw_hash \
537 $< | $(SED) 's,lookup\[,gperf_lookup[,' > $@-t 537 $< | $(SED) 's,lookup\[,gperf_lookup[,' > $@-t
538 @$(top_srcdir)/move-if-change $@-t $@ 538 @$(top_srcdir)/move-if-change $@-t $@
539 539
540 # How to make a .oct file from a .o file:
541
542 ifeq ($(ENABLE_DYNAMIC_LINKING), true)
543 ifdef CXXPICFLAG
544 __glpk__.oct : pic/__glpk__.o octave$(EXEEXT)
545 $(DL_LD) $(DL_LDFLAGS) -o $@ $< $(OCT_LINK_DEPS) $(GLPK_LIBS)
546 else
547 __glpk__.oct : __glpk__.o octave$(EXEEXT)
548 $(DL_LD) $(DL_LDFLAGS) -o $@ $< $(OCT_LINK_DEPS) $(GLPK_LIBS)
549 endif
550 endif
551
540 check: all 552 check: all
541 .PHONY: check 553 .PHONY: check
542 554
543 # If missing, GNU make attempts to create them in the reverse of the 555 # If missing, GNU make attempts to create them in the reverse of the
544 # order in which they are listed here. We rely on that fact to ensure 556 # order in which they are listed here. We rely on that fact to ensure