Artifact 161ecd9b9749a49d5f5aaf3d3256e39d0352a0cde0a37faf51c4e4234cd9fd89:
- File
mttroot/mtt/lib/examples/Makefile
— part of check-in
[e6c98916c8]
at
2004-02-19 00:47:19
on branch origin/master
— 898897 Separate examples from main .deb
Created new .deb package for examples (mtt-examples).mtt-examples depends on mtt.
mtt recommends mtt-examples. (user: geraint@users.sourceforge.net, size: 797) [annotate] [blame] [check-ins using] [more...]
#! /usr/bin/make -f # DESTDIR prefix required by Debian build process INSTDIR=$(DESTDIR)/usr/share/mtt/lib/examples configure: configure-stamp configure-stamp: @touch configure-stamp build: configure build-stamp build-stamp: @touch build-stamp clean: @touch clean.sh @-chmod a+x clean.sh @./clean.sh @rm -f clean.sh distclean: clean install: build clean.sh @install -d $(INSTDIR) @cp -a ABG\ AlgebraicLoops\ Anaesthesia\ Chemical\ Components\ Control\ Electrical\ Electromechanical\ GasDynamics\ Hybrid\ Identification\ Inverse\ Mechanical\ Sensitivity\ Simulation\ Thermal\ $(INSTDIR) .PHONY: FORCE clean.sh: FORCE @echo '#! /bin/sh' >>clean.sh @echo '# This file is auto-generated - do not edit' >>clean.sh @echo "rm -f $(INSTDIR)/examples" >>clean.sh