x cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Tue, 03 Jul 2018 09:40:54 +0200
branchcvs_MAIN
changeset 840 451ac0f18e60
parent 839 c809b94a4cc6
child 841 07bc9771d4a6
x
Make.proto
--- a/Make.proto	Tue Jul 03 09:40:52 2018 +0200
+++ b/Make.proto	Tue Jul 03 09:40:54 2018 +0200
@@ -1,15 +1,90 @@
-# Hand-written 
+# $Header$
+#
+# DO NOT EDIT
+# automagically generated from the projectDefinition: stx_libscm.
+#
+# Warning: once you modify this file, do not rerun
+# stmkmp or projectDefinition-build again - otherwise, your changes are lost.
 #
-# position in directory hierarchy:
+# The Makefile as generated by this Make.proto supports the following targets:
+#    make         - compile all st-files to a classLib
+#    make clean   - clean all temp files
+#    make clobber - clean all
+#
+# This file contains definitions for Unix based platforms.
+# It shares common definitions with the win32-make in Make.spec.
+
+#
+# position (of this package) in directory hierarchy:
+# (must point to ST/X top directory, for tools and includes)
 TOP=..
+INCLUDE_TOP=$(TOP)/..
 
 # subdirectories where targets are to be made:
-SUBDIRS=common mercurial
+SUBDIRS= common mercurial github
+
+
+# subdirectories where Makefiles are to be made:
+# (only define if different from SUBDIRS)
+# ALLSUBDIRS=
+
+REQUIRED_SUPPORT_DIRS=
+
+# ********** OPTIONAL: MODIFY the next line ***
+# additional C targets or libraries should be added below
+LOCAL_EXTRA_TARGETS=
+
+OBJS=
+
+
 
-# subdirectories where targets are to be made:
-ALLSUBDIRS=$(SUBDIRS) git
+all:: preMake  postMake
+
+pre_objs::  
+
+
+
+
+
+
+
+
+
+# run default testsuite for this package
+test: $(TOP)/goodies/builder/reports
+	$(MAKE) -C $(TOP)/goodies/builder/reports -f Makefile.init
+	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport -p $(PACKAGE)
 
-test: $(TOP)/goodies/builder/reports
-	$(MAKE) -C $(TOP)/goodies/builder/reports
-	$(TOP)/goodies/builder/reports/report-runner.sh -D . -r Builder::TestReport \
-		-p 'stx:libscm/mercurial'
+
+
+# add more install actions here
+install::
+
+# add more install actions for aux-files (resources) here
+installAux::
+
+# add more preMake actions here
+preMake::
+
+# add more postMake actions here
+postMake:: cleanjunk
+
+# build all mandatory prerequisite packages (containing superclasses) for this package
+prereq:
+
+
+# build all packages containing referenced classes for this package
+# they are not needed to compile the package (but later, to load it)
+references:
+
+
+cleanjunk::
+	-rm -f *.s *.s2
+
+clean::
+	-rm -f *.o *.H
+
+clobber:: clean
+	-rm -f *.so *.dll
+
+