Makefile.init
author Patrik Svestka <patrik.svestka@gmail.com>
Wed, 14 Nov 2018 12:07:51 +0100
branchjv
changeset 3630 5e718e0a754e
parent 3146 94b9eff076a3
permissions -rw-r--r--
Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present - All source *.st files are now Unicode UTF8 without BOM Files are in two groups (fileOut works this way in Smalltalk/X): - containing a unicode character have "{ Encoding: utf8 }" at the header - ASCII only are without the header
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2731
582f4a766e19 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
#
3146
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
     2
# DO NOT EDIT
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
     3
#
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
     4
# make uses this file (Makefile) only, if there is no
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
     5
# file named "makefile" (lower-case m) in the same directory.
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
     6
# My only task is to generate the real makefile and call make again.
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
     7
# Thereafter, I am no longer used and needed.
2731
582f4a766e19 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
#
3146
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
     9
# MACOSX caveat:
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    10
#   as filenames are not case sensitive (in a default setup),
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    11
#   we cannot use the above trick. Therefore, this file is now named
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    12
#   "Makefile.init", and you have to execute "make -f Makefile.init" to
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    13
#   get the initial makefile.  This is now also done by the toplevel CONFIG
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    14
#   script.
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    15
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    16
.PHONY: run
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    17
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    18
run: makefile
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    19
	$(MAKE) -f makefile
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    20
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    21
#only needed for the definition of $(TOP)
2731
582f4a766e19 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
include Make.proto
582f4a766e19 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
3146
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    24
makefile: mf
2980
0756e01d5954 removed via FileBrowser
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
    25
3146
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    26
mf:
94b9eff076a3 Do not add stx:libview3 as preRequisite
Stefan Vogel <sv@exept.de>
parents: 2980
diff changeset
    27
	$(TOP)/rules/stmkmf