summaryrefslogtreecommitdiff
path: root/Build/source/texk/make/common.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/make/common.mk')
-rw-r--r--Build/source/texk/make/common.mk64
1 files changed, 0 insertions, 64 deletions
diff --git a/Build/source/texk/make/common.mk b/Build/source/texk/make/common.mk
deleted file mode 100644
index 72c3ac847e8..00000000000
--- a/Build/source/texk/make/common.mk
+++ /dev/null
@@ -1,64 +0,0 @@
-# common.mk -- used by all Makefiles.
-SHELL = /bin/sh
-@SET_MAKE@
-top_srcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-CC = @CC@
-CFLAGS = @CFLAGS@ $(XCFLAGS)
-CPPFLAGS = @CPPFLAGS@ $(XCPPFLAGS)
-DEFS = @DEFS@ $(XDEFS)
-LDFLAGS = @LDFLAGS@ $(XLDFLAGS)
-
-# Kpathsea needs this for compiling, programs need it for linking.
-LIBTOOL = $(SHELL) $(kpathsea_parent)/libtool
-
-# You can change [X]CPPFLAGS, [X]CFLAGS, or [X]DEFS, but
-# please don't change ALL_CPPFLAGS or ALL_CFLAGS.
-# prog_cflags is set by subdirectories of web2c.
-ALL_CPPFLAGS = $(DEFS) -I. -I$(srcdir) -I$(kpathsea_parent) \
- -I$(kpathsea_srcdir_parent) $(prog_cflags) $(CPPFLAGS)
-ALL_CFLAGS = $(ALL_CPPFLAGS) $(CFLAGS)
-ALL_CXXFLAGS = $(ALL_CPPFLAGS) $(CXXFLAGS)
-compile = $(CC) $(ALL_CFLAGS)
-
-.SUFFIXES:
-.SUFFIXES: .c .o .lo # in case the suffix list has been cleared, e.g., by web2c
-.c.o:
- $(compile) -c $< -o $@
-
-# Installation.
-INSTALL = @INSTALL@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_LIBTOOL_LIBS = $(LIBTOOL) --mode=install $(INSTALL_DATA)
-INSTALL_LIBTOOL_PROG = $(LIBTOOL) --mode=install $(INSTALL_PROGRAM)
-
-# Creating (symbolic) links.
-LN = @LN_S@
-
-# Removing files.
-RM = rm -f
-
-# Uninstall.
-UNINSTALL = $(RM)
-UNINSTALL_PROGRAM = $(RM)
-UNINSTALL_SCRIPT = $(RM)
-UNINSTALL_DATA = $(RM)
-UNINSTALL_LIBTOOL_LIBS = $(LIBTOOL) --mode=uninstall $(RM)
-UNINSTALL_LIBTOOL_PROG = $(LIBTOOL) --mode=uninstall $(RM)
-
-# We use these for many things.
-kpathsea_parent = ..
-kpathsea_dir = $(kpathsea_parent)/kpathsea
-kpathsea_srcdir_parent = $(top_srcdir)/..
-kpathsea_srcdir = $(kpathsea_srcdir_parent)/kpathsea
-kpathsea = $(kpathsea_dir)/libkpathsea.la
-
-@MAINT@ifeq ($(CC), gcc)
-@MAINT@XDEFS = -Wpointer-arith $(warn_more)
-@MAINT@CFLAGS = -g $(XCFLAGS)
-@MAINT@endif
-# End of common.mk.