"Fossies" - the Fresh Open Source Software Archive

Member "laspack/examples/vectopt/makefile" (11 Aug 1995, 3731 Bytes) of package /linux/privat/old/laspack.tgz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 #
    2 # set appropriate the following variables in your environment:
    3 #
    4 # CC		for the C compiler
    5 # CFLAGS	for options of CC
    6 # LDFLAGS	for linker options of CC
    7 #
    8 
    9 #
   10 # ARCH_EXT can be used in order to install binaries in different directories
   11 # depending on the computer architecture,
   12 # e.g. $(HOME)/lib/sunos for ARCH_EXT = '/sunos'
   13 #
   14 #ARCH_EXT	=
   15 
   16 #
   17 # set the path for the root of the inlude directories here,
   18 # e.g. /usr/local/include
   19 #
   20 INCROOT		= $(HOME)/include
   21 #
   22 # set the path for the root of the library directories here,
   23 # e.g. /usr/local/lib
   24 #
   25 LIBROOT		= $(HOME)/lib$(ARCH_EXT)
   26 #
   27 # set the destination directory for the executable
   28 #
   29 DEST		= $(HOME)/bin$(ARCH_EXT)
   30 
   31 #
   32 # the following text was created automaticaly. You should change it carefully.
   33 #
   34 
   35 SHELL		= /bin/sh
   36 
   37 PROGRAM		= vectopt
   38 
   39 HDRS		= testproc.h
   40 
   41 EXTHDRS		=
   42 
   43 SRCS		= testproc.c \
   44 		vectopt.c
   45 
   46 OBJS		= testproc.o \
   47 		vectopt.o
   48 
   49 LIBS		=
   50 
   51 EXTLIBS		= -llaspack -lxc
   52 
   53 COMPFLAGS	=  
   54 
   55 # compiler options will be passed throuth enviroment variables
   56 #CFLAGS		=
   57 #PFLAGS		=
   58 #FFLAGS		=
   59 #CXXFLAGS	=
   60 
   61 BINLOCAL	= /usr/local/bin
   62 
   63 INSTALL		= mv
   64 
   65 LD		= $(CC)
   66 
   67 # linker options passed throuth enviroment variables
   68 #LDFLAGS	=
   69 
   70 LINTLIBS	=
   71 
   72 LINTFLAGS	= -I$(INCROOT) $(CFLAGS)
   73 
   74 MAKEFILE	= makefile
   75 
   76 PRINT		= pr
   77 
   78 PRINTFLAGS	=
   79 
   80 LP		= lp
   81 
   82 LPFLAGS		= 
   83 
   84 all:		$(PROGRAM)
   85 
   86 clean:;		@rm -f $(OBJS) core
   87 
   88 clobber:;	@rm -f $(OBJS) $(PROGRAM) core tags
   89 		@if [ -f compllist ]; then rm -f compllist; fi
   90 		@if [ -f cleanlist ]; then rm -f cleanlist; fi
   91 		@find . -type f -print > compllist
   92 		@sed -n \
   93 			-e "/~/ w cleanlist" \
   94 			-e '/%/ w cleanlist' \
   95 			-e '/.bak/ w cleanlist' \
   96 			-e '/.obj/ w cleanlist' \
   97 			-e '/.exe/ w cleanlist' \
   98 			-e '/.aux/ w cleanlist' \
   99 			-e '/.blg/ w cleanlist' \
  100 			-e '/.dvi/ w cleanlist' \
  101 			-e '/.glo/ w cleanlist' \
  102 			-e '/.idx/ w cleanlist' \
  103 			-e '/.ilg/ w cleanlist' \
  104 			-e '/.ind/ w cleanlist' \
  105 			-e '/.lof/ w cleanlist' \
  106 			-e '/.log/ w cleanlist' \
  107 			-e '/.lot/ w cleanlist' \
  108 			-e '/.toc/ w cleanlist' \
  109 			compllist
  110 		@rm -f `cat cleanlist`
  111 		@rm -f compllist
  112 		@rm -f cleanlist
  113 		
  114 depend:;	@mkmf -f $(MAKEFILE)
  115 
  116 echo:;		@echo $(HDRS) $(SRCS)
  117 
  118 index:;		@ctags -wx $(HDRS) $(SRCS)
  119 
  120 install:	$(PROGRAM)
  121 		@echo Installing $(PROGRAM) in $(DEST)
  122 		@strip $(PROGRAM)
  123 		@if [ $(DEST) != . ]; then rm -f $(DEST)/$(PROGRAM); fi
  124 		@if [ $(DEST) != . ]; then $(INSTALL) -f $(PROGRAM) $(DEST); fi
  125 
  126 install-local:	$(PROGRAM)
  127 		@echo Installing $(PROGRAM) in $(BINLOCAL)
  128 		@strip $(PROGRAM)
  129 		@rm -f $(BINLOCAL)/$(PROGRAM).old
  130 		@if [ -f $(BINLOCAL)/$(PROGRAM) ]; then \
  131 			mv $(BINLOCAL)/$(PROGRAM) $(BINLOCAL)/$(PROGRAM).old; \
  132 		fi
  133 		@$(INSTALL) -f $(PROGRAM) $(BINLOCAL)
  134 		@chmod 755 $(BINLOCAL)/$(PROGRAM)
  135 
  136 lint:		$(LINTLIBS) $(HDRS) $(EXTHDRS) $(SRCS)
  137 		@$(LINT) $(LINTFLAGS) $(LINTLIBS) $(SRCS)
  138 
  139 print:;		@$(PRINT) $(PRINTFLAGS) $(HDRS) $(SRCS) | $(LP) $(LPFLAGS)
  140 
  141 tags:           $(HDRS) $(SRCS) 
  142 		@ctags $(HDRS) $(SRCS)
  143 
  144 touch:;		@touch $(HDRS) $(SRCS) $(MAKEFILE)
  145 
  146 update:		$(DEST)/$(PROGRAM)
  147 
  148 d2u:;		@d2u $(HDRS) $(SRCS)
  149  
  150 c:;		@$(MAKE) -f $(MAKEFILE) clean
  151 cl:;		@$(MAKE) -f $(MAKEFILE) clobber
  152 i:;             @$(MAKE) -f $(MAKEFILE) install
  153 il:;		@$(MAKE) -f $(MAKEFILE) install-local
  154 l:;		@$(MAKE) -f $(MAKEFILE) lint
  155 t:;		@$(MAKE) -f $(MAKEFILE) touch
  156 u:;		@$(MAKE) -f $(MAKEFILE) update 
  157 
  158 $(PROGRAM):     $(OBJS) $(LIBS) $(MAKEFILE)
  159 		@echo "Linking $(PROGRAM) ..."
  160 		@$(LD) $(COMPFLAGS) $(OBJS) $(LIBS) -o $(PROGRAM) \
  161 			-L$(LIBROOT) $(EXTLIBS) $(LDFLAGS) -lm
  162 
  163 $(DEST)/$(PROGRAM):  $(HDRS) $(EXTHDRS) $(SRCS) $(LIBS) 
  164 		@$(MAKE) -f $(MAKEFILE) install:
  165 
  166 .c.o:;		$(CC) -I$(INCROOT) $(CFLAGS) $(COMPFLAGS) -c $<
  167 .p.o:;		pc $(PFLAGS) $(COMPFLAGS) -c $<
  168 .f.o:;		f77 $(FFLAGS) $(COMPFLAGS) -c $<
  169 ###
  170 testproc.o: testproc.h
  171 vectopt.o: testproc.h