mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-27 01:01:52 -07:00
42 lines
959 B
Makefile
42 lines
959 B
Makefile
# Makefile.in -- source for autoconf Makefile
|
|
#
|
|
# $Id$
|
|
# Copyright (C) 2012 Ravenbrook Limited. See end of file for license.
|
|
#
|
|
# YOU DON'T NEED AUTOCONF TO BUILD THE MPS
|
|
# This is just here for people who want or expect a configure script.
|
|
# See [Building the Memory Pool System](manual/build.txt) for how best
|
|
# to build and integrate the MPS.
|
|
#
|
|
|
|
MAKE=@MAKE@
|
|
MPS_TARGET_PF=@MPS_TARGET_PF@
|
|
MPS_TARGET_NAME=@MPS_TARGET_NAME@
|
|
|
|
BUILD_TARGET=@BUILD_TARGET@
|
|
CLEAN_TARGET=@CLEAN_TARGET@
|
|
|
|
all: @BUILD_TARGET@
|
|
|
|
build-via-make:
|
|
$(MAKE) -C code -f $(MPS_TARGET_NAME).gmk
|
|
|
|
clean-make-build:
|
|
$(MAKE) -C code -f $(MPS_TARGET_NAME).gmk clean
|
|
|
|
build-via-xcode:
|
|
xcodebuild -project code/mps.xcodeproj
|
|
|
|
clean-xcode-build:
|
|
xcodebuild -project code/mps.xcodeproj clean
|
|
|
|
Makefile: Makefile.in config.status
|
|
./config.status Makefile
|
|
|
|
clean: @CLEAN_TARGET@
|
|
|
|
configure: configure.ac
|
|
autoreconf -vif
|
|
|
|
distclean: clean
|
|
rm -rf autom4te.cache/ config.log config.status Makefile
|