tests/Makefile.init
author Stefan Vogel <sv@exept.de>
Thu, 11 Apr 2019 18:33:00 +0200
branchcvs_MAIN
changeset 3896 0467a3e7cc0f
parent 3336 08a79331ec58
permissions -rw-r--r--
#REFACTORING by stefan class: JavaNativeMethodImpl_OpenJDK6 class changed: #_java_io_UnixFileSystem_canonicalize0:_: #_java_io_WinNTFileSystem_canonicalize0:_: #_java_io_WinNTFileSystem_canonicalizeWithPrefix0:_:_: use \"asFilename pathName\" instead of \"asFilename asAbsoluteFilename pathName\" ist is equivalent!
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3336
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
#
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
# DO NOT EDIT
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
#
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
# make uses this file (Makefile) only, if there is no
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
# file named "makefile" (lower-case m) in the same directory.
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
# My only task is to generate the real makefile and call make again.
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
# Thereafter, I am no longer used and needed.
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
#
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
# MACOSX caveat:
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    10
#   as filenames are not case sensitive (in a default setup),
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
#   we cannot use the above trick. Therefore, this file is now named
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
#   "Makefile.init", and you have to execute "make -f Makefile.init" to
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
#   get the initial makefile.  This is now also done by the toplevel CONFIG
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
#   script.
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    15
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
.PHONY: run
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
run: makefile
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
	$(MAKE) -f makefile
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
#only needed for the definition of $(TOP)
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
include Make.proto
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    23
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    24
makefile: mf
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    25
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    26
mf:
08a79331ec58 Repository cleanup (5/7): made stx:libjava/tests a full Smalltalk/X package.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    27
	$(TOP)/rules/stmkmf