File: programs.make

package info (click to toggle)
tetex-bin 0.9-7
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 31,840 kB
  • ctags: 20,484
  • sloc: ansic: 183,676; sh: 7,743; perl: 3,431; makefile: 2,891; pascal: 1,546; yacc: 1,507; cpp: 608; awk: 522; asm: 500; lex: 323; sed: 322; csh: 47
file content (19 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# programs.make -- used by Makefiles for executables only.

# Don't include $(CFLAGS), since ld -g under Linux forces
# static libraries, e.g., libc.a and libX*.a.
LDFLAGS = @LDFLAGS@ $(XLDFLAGS)

# proglib is for web2c; 
# XLOADLIBES is for the installer.
LIBS = @LIBS@
LOADLIBES = $(proglib) $(kpathsea) $(LIBS) -lm $(XLOADLIBES)

# May as well separate linking from compiling, just in case.
CCLD = $(CC)
link_command = $(CCLD) -o $@ $(LDFLAGS) 

# When we link with Kpathsea, have to take account that it might be a
# shared library, etc.
kpathsea_link = $(LIBTOOL) link $(link_command)
# End of programs.make.