~ubuntu-branches/ubuntu/jaunty/luatex/jaunty

« back to all changes in this revision

Viewing changes to src/texk/make/programs.mk

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2007-09-24 12:56:11 UTC
  • Revision ID: james.westby@ubuntu.com-20070924125611-a8ge689azbptxvla
Tags: upstream-0.11.2
ImportĀ upstreamĀ versionĀ 0.11.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# programs.mk -- used by Makefiles for executables only.
 
2
 
 
3
# Don't include $(CFLAGS), since ld -g under Linux forces
 
4
# static libraries, e.g., libc.a and libX*.a.
 
5
LDFLAGS = @LDFLAGS@ $(XLDFLAGS)
 
6
 
 
7
# proglib is for web2c; 
 
8
# XLOADLIBES is for the installer.
 
9
LIBS = @LIBS@
 
10
LOADLIBES = $(proglib) $(kpathsea) $(LIBS) $(XLOADLIBES)
 
11
 
 
12
# May as well separate linking from compiling, just in case.
 
13
CCLD = $(CC)
 
14
link_command = $(CCLD) -o $@ $(LDFLAGS) 
 
15
 
 
16
# When we link with Kpathsea, have to take account that it might be a
 
17
# shared library, etc.
 
18
kpathsea_link = $(LIBTOOL) --mode=link $(link_command)
 
19
# End of programs.mk.