comparison libcruft/misc/Makefile.in @ 2993:91589ab98e37

[project @ 1997-05-21 21:44:54 by jwe]
author jwe
date Wed, 21 May 1997 21:51:38 +0000
parents 1dd37f97364a
children 9ce32027e269
comparison
equal deleted inserted replaced
2992:53b38bf1d443 2993:91589ab98e37
23 23
24 INSTALL = @INSTALL@ 24 INSTALL = @INSTALL@
25 INSTALL_PROGRAM = @INSTALL_PROGRAM@ 25 INSTALL_PROGRAM = @INSTALL_PROGRAM@
26 INSTALL_DATA = @INSTALL_DATA@ 26 INSTALL_DATA = @INSTALL_DATA@
27 27
28 INCLUDES := f77-fcn.h lo-error.h
29
28 ifeq ($(SHARED_LIBS), true) 30 ifeq ($(SHARED_LIBS), true)
29 ifdef CPICFLAG 31 ifdef CPICFLAG
30 CPICDEP := pic/machar.o pic/dostop.o pic/f77-fcn.o 32 CPICDEP := pic/machar.o pic/dostop.o pic/f77-fcn.o
31 endif 33 endif
32 ifdef CXXPICFLAG 34 ifdef CXXPICFLAG
37 39
38 include ../Makerules 40 include ../Makerules
39 41
40 install install-strip:: 42 install install-strip::
41 $(top_srcdir)/mkinstalldirs $(octincludedir) 43 $(top_srcdir)/mkinstalldirs $(octincludedir)
42 $(INSTALL_DATA) $(srcdir)/f77-fcn.h $(octincludedir)/f77-fcn.h 44 for f in $(INCLUDES) ; do \
43 $(INSTALL_DATA) $(srcdir)/lo-error.h $(octincludedir)/lo-error.h 45 rm -f $(octincludedir)/$$f ; \
46 $(INSTALL_DATA) $(srcdir)/$$f $(octincludedir)/$$f ; \
47 done
48 $(mk-includedir-link)
44 49
45 uninstall:: 50 uninstall::
46 rm -f $(octincludedir)/f77-fcn.h 51 for f in $(INCLUDES) ; do rm -f $(octincludedir)/$$f ; done
47 52
48 # Don't optimize. 53 # Don't optimize.
49 54
50 XCC = $(patsubst -O%, , $(CC)) 55 XCC = $(patsubst -O%, , $(CC))
51 XALL_CFLAGS = $(patsubst -O%, , $(ALL_CFLAGS)) 56 XALL_CFLAGS = $(patsubst -O%, , $(ALL_CFLAGS))