home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / unixtex-6.1b-src.tgz / tar.out / contrib / unixtex / make / programs.make < prev    next >
Text File  |  1996-09-28  |  472b  |  14 lines

  1. # programs.make -- used by Makefiles for executables only.
  2. # Linking. Don't include $(CFLAGS), since ld -g under Linux forces
  3. # static libraries, including libc.a and libX*.a
  4. LDFLAGS = @LDFLAGS@ $(XLDFLAGS)
  5. LIBS = @LIBS@
  6. # proglib is for web2c; 
  7. # XLOADLIBES is for the installer.
  8. LOADLIBES= $(proglib) $(kpathsea) $(LIBS) -lm $(XLOADLIBES)
  9.  
  10. # Why separate CCLD from CC?  No particular reason.
  11. CCLD = $(CC)
  12. link_command = $(CCLD) -o $@ $(LDFLAGS) 
  13. # End of programs.make.
  14.