File: programs.mk

package info (click to toggle)
dvipsk-ja 5.95a%2Bjp1.7a-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,976 kB
  • ctags: 3,113
  • sloc: ansic: 28,084; sh: 10,210; makefile: 565; perl: 365; csh: 47; awk: 35
file content (19 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# programs.mk -- 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) $(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) --mode=link $(link_command)
# End of programs.mk.