Makefile.init
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 10 Dec 2017 00:04:50 +0000
branchjv
changeset 6360 1091acf82a3e
parent 4792 5dbf273d49fc
child 6361 599f4560a907
permissions -rw-r--r--
Editor theme: introduced an abstract theme class `CodeViewTheme` to provide theme support to `CodeView` and subclasses - most notably `CodeView2`.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6360
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     1
#
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     2
# DO NOT EDIT
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     3
#
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     4
# make uses this file (Makefile) only, if there is no
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     5
# file named "makefile" (lower-case m) in the same directory.
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     6
# My only task is to generate the real makefile and call make again.
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     7
# Thereafter, I am no longer used and needed.
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     8
#
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
     9
# MACOSX caveat:
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    10
#   as filenames are not case sensitive (in a default setup),
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    11
#   we cannot use the above trick. Therefore, this file is now named
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    12
#   "Makefile.init", and you have to execute "make -f Makefile.init" to
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    13
#   get the initial makefile.  This is now also done by the toplevel CONFIG
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    14
#   script.
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    15
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    16
.PHONY: run
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    17
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    18
run: makefile
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    19
	$(MAKE) -f makefile
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    20
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    21
#only needed for the definition of $(TOP)
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    22
include Make.proto
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    23
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    24
makefile: mf
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    25
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    26
mf:
1091acf82a3e Editor theme: introduced an abstract theme class `CodeViewTheme`
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4792
diff changeset
    27
	$(TOP)/rules/stmkmf