Makefile.init
author Claus Gittinger <cg@exept.de>
Sun, 01 Feb 2015 14:16:33 +0100
changeset 3178 58100b56595d
parent 3146 94b9eff076a3
permissions -rw-r--r--
class: MenuEditor fixed the following redraw bug in ModelListView (which is already fixed in SelectionInListView): if a colored item is shown with selection, the color attribute should be removed (or relaxed), to avoid drawing the label invisible. I.e. if the text color is blue or grey, and the selection bg is blue. we should draw white-on-blue, instead of blue/grey on blue. For this to work, the info whether drawing a selection must be passed down through the renderer to the item's draw routine.
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