Skip to content
Makefile.in 4.77 KiB
Newer Older
jjgarcia's avatar
jjgarcia committed
# DIST: This is the distribution Makefile for ECL.  configure can
# DIST: make most of the changes to this file you might want, so try
# DIST: that first.

# make all	to compile and build ECL.
jjgarcia's avatar
jjgarcia committed
# make install	to install it.
# make TAGS	to update tags tables.
#
# make clean  or  make mostlyclean
#      Delete all files from the current directory that are normally
#      created by building the program.	 Don't delete the files that
#      record the configuration.  Also preserve files that could be made
#      by building, but normally aren't because the distribution comes
#      with them.
#
#      Delete `.dvi' files here if they are not part of the distribution.
# 
# make distclean
#      Delete all files from the current directory that are created by
#      configuring or building the program.  If you have unpacked the
#      source and built the program without creating any other files,
#      `make distclean' should leave only the files that were in the
#      distribution.
# 
# make realclean
#      Delete everything from the current directory that can be
#      reconstructed with this Makefile.  This typically includes
#      everything deleted by distclean.

SHELL = /bin/sh
jjgarcia's avatar
jjgarcia committed

# ========================= Last release ================================

WWW=https://common-lisp.net/project/ecl/
ADDRESS=https://gitlab.com/embeddable-common-lisp/ecl
jjgarcia's avatar
jjgarcia committed

# ==================== Things `configure' Might Edit ====================

#  Where to find the source code.
#  This is set by the configure script's `--srcdir' option.
srcdir=@srcdir@

prefix=@prefix@
exec_prefix=@exec_prefix@
datarootdir=@datarootdir@
datadir=@datadir@
jjgarcia's avatar
jjgarcia committed
bindir=@bindir@
infodir=@infodir@
mandir=@mandir@
libdir=@libdir@

# ==================== Utility Programs for the Build ====================

#  Allow the user to specify the install program.
jjgarcia's avatar
jjgarcia committed
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@

# ============================= Build ==============================

all: build/Makefile
	cd build; $(MAKE)
jjgarcia's avatar
jjgarcia committed
.PHONY:	all

Makefile: Makefile.in build/config.status
	(cd build; ./config.status)
jjgarcia's avatar
jjgarcia committed

ecl_min: build/Makefile
	cd build; $(MAKE) ecl_min

jjgarcia's avatar
jjgarcia committed
# ==================== Installation ====================

INSTALL_TARGET = @INSTALL_TARGET@

install: build/Makefile
	cd build; $(MAKE) $(INSTALL_TARGET)
jjgarcia's avatar
jjgarcia committed
uninstall:
	cd build; $(MAKE) uninstall
jjgarcia's avatar
jjgarcia committed

# ==================== Cleaning up and miscellanea ====================

#   `clean'
#        Delete all files from the current directory that are normally
#        created by building the program.  Don't delete the files that
#        record the configuration.  Also preserve files that could be made
#        by building, but normally aren't because the distribution comes
#        with them.
jjgarcia's avatar
jjgarcia committed
clean:
	cd build; $(MAKE) clean
jjgarcia's avatar
jjgarcia committed

#   `distclean'
#        Delete all files from the current directory that are created by
#        configuring or building the program.  If you have unpacked the
#        source and built the program without creating any other files,
#        `make distclean' should leave only the files that were in the
#        distribution.

distclean: clean
	rm -rf build Makefile
jjgarcia's avatar
jjgarcia committed

#   `realclean'
#        Delete everything from the current directory that can be
#        reconstructed with this Makefile.
#        One exception, however: `make realclean' should not delete
#        `configure' even if `configure' can be remade using a rule in the
#        Makefile.  More generally, `make realclean' should not delete
#        anything that needs to exist in order to run `configure' and then
#        begin to build the program.
realclean: distclean

	cd build && $(MAKE) check TESTS="$(TESTS)"
# ==================== Various means of distribution ====================
jjgarcia's avatar
jjgarcia committed

jjgarcia's avatar
jjgarcia committed

doc:
	$(MAKE) -C build/doc
.PHONY: doc
jjgarcia's avatar
jjgarcia committed

source-dist: $(TAR_DIR).tgz
jjgarcia's avatar
jjgarcia committed

$(TAR_DIR).tgz:
	git archive --format=tar.gz --prefix=$(TAR_DIR)/ HEAD > $@
jjgarcia's avatar
jjgarcia committed

binary-dist: all
	su -c "rm -rf tmp"
	mkdir tmp
	for i in tmp$(bindir) tmp$(infodir) tmp$(mandir) tmp$(libdir); do \
	(echo $$i; IFS="/"; \for k in $$i; do echo $$k; (test -d $$k || mkdir $$k); chmod 755 $$k; cd $$k; done); \
jjgarcia's avatar
jjgarcia committed
	done
	prefix=`pwd`/tmp; cd build; $(MAKE) install prefix=$(prefix)
	su -c "chown -R root.root tmp && cd tmp; tar czf ../ecl-$(VERSION)-$(MACHINE).tgz * && cd .. && rm -rf tmp"
jjgarcia's avatar
jjgarcia committed

jjgarcia's avatar
jjgarcia committed
# This creates a ZIP file with a flattened directory structure
windows-dist: all
	cd build; rm -rf $(TAR_DIR); mkdir $(TAR_DIR); \
	$(MAKE) flatinstall prefix=`pwd`/$(TAR_DIR); \
jjgarcia's avatar
jjgarcia committed
	zip -r $(TAR_DIR).zip $(TAR_DIR)
	cd build; rm -rf $(TAR_DIR); mkdir $(TAR_DIR); \
	$(MAKE) flatinstall prefix=`pwd`/$(TAR_DIR)
	`pwd`/src/util/ecl_nsi.sh `pwd`/src/util/ecl.nsi build/$(TAR_DIR)
	makensis.exe build/$(TAR_DIR)/ecl.nsi
	mv build/$(TAR_DIR)/Setup.exe ecl-$(VERSION).exe