home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11.lha / ccs-lib / makefile.hdr < prev    next >
Encoding:
Makefile  |  1993-02-23  |  711 b   |  28 lines

  1. ################ Beginning of makefile.hdr ################
  2. # Stuff that goes at the beginning of all the makefiles, but is not
  3. # configuration parameters, should be in this file.  It is included
  4. # after the configuration file, and before makefile.src.
  5.  
  6. DIRS =
  7. PGMS =
  8.  
  9. SHELL = /bin/sh
  10.  
  11. COMPILEc = $(CC) -D$(ORIG) -D$(BITORDER) $(CFLAGS) \
  12.     $(CPPFLAGS) $(TARGET_ARCH) $(FASTCOPY) $(FLOAT) -c
  13. LINKc = $(CC) -D$(ORIG) -D$(BITORDER) $(CFLAGS) \
  14.     $(CPPFLAGS) $(FLOAT) $(TARGET_ARCH) $(FASTCOPY) -o
  15. LIBRARIES = $(LDFLAGS) $(LIBRARY) $(OTHERLIBS)
  16.  
  17. .SUFFIXES:    .out
  18.  
  19. .c.o:
  20.     $(COMPILEc) $<
  21.  
  22. .c.out:
  23.     $(LINKc) $* $< $(LIBRARIES)
  24.     strip $*
  25.     mv $* $(DESTDIR)
  26.     @touch $@
  27. ################ End of makefile.hdr ################
  28.