diff options
Diffstat (limited to 'Build/source/texk/make/cross.mk')
-rw-r--r-- | Build/source/texk/make/cross.mk | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Build/source/texk/make/cross.mk b/Build/source/texk/make/cross.mk deleted file mode 100644 index f433a27828a..00000000000 --- a/Build/source/texk/make/cross.mk +++ /dev/null @@ -1,20 +0,0 @@ -# cross.mk -- used by Makefiles for build-host executables. - -BUILDCC = @BUILDCC@ -BUILDCFLAGS = @BUILDCFLAGS@ -BUILDCPPFLAGS = @BUILDCPPFLAGS@ - -ALL_BUILDCPPFLAGS = $(DEFS) -I. -I$(srcdir) -I$(kpathsea_parent) \ - -I$(kpathsea_srcdir_parent) $(prog_cflags) $(BUILDCPPFLAGS) -ALL_BUILDCFLAGS = $(ALL_BUILDCPPFLAGS) $(BUILDCFLAGS) -build_compile = $(BUILDCC) $(ALL_BUILDCFLAGS) - -# Don't include $(BUILDCFLAGS), since ld -g under Linux forces -# static libraries, e.g., libc.a and libX*.a. -BUILDLDFLAGS = @BUILDLDFLAGS@ - -# May as well separate linking from compiling, just in case. -BUILDCCLD = @BUILDCCLD@ -build_link_command = $(BUILDCCLD) -o $@ $(BUILDLDFLAGS) - -# End of cross.mk. |