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 >
Wrap
Text File
|
1996-09-28
|
472b
|
14 lines
# programs.make -- used by Makefiles for executables only.
# Linking. Don't include $(CFLAGS), since ld -g under Linux forces
# static libraries, including libc.a and libX*.a
LDFLAGS = @LDFLAGS@ $(XLDFLAGS)
LIBS = @LIBS@
# proglib is for web2c;
# XLOADLIBES is for the installer.
LOADLIBES= $(proglib) $(kpathsea) $(LIBS) -lm $(XLOADLIBES)
# Why separate CCLD from CC? No particular reason.
CCLD = $(CC)
link_command = $(CCLD) -o $@ $(LDFLAGS)
# End of programs.make.