experiments/Makefile
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 16 Sep 2013 14:09:52 +0100
branchdevelopment
changeset 2734 f56049613ff3
parent 2380 9195eccdcbd9
child 3162 e8002e2c2fd9
permissions -rw-r--r--
Initial support for live code checker / lint. JavaLintService parses the code as you type and displays all errors and other problems. This is done by running compiler in check mode in background. This also removes the necessity for JavaCompilerProblemRegistry.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     1
#
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 749
diff changeset
     2
# DO NOT EDIT
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     3
#
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 749
diff changeset
     4
# make uses this file (Makefile) only, if there is no
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     5
# file named "makefile" (lower-case m) in the same directory.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     6
# My only task is to generate the real makefile and call make again.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     7
# Thereafter, I am no longer used and needed.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     8
#
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     9
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    10
.PHONY: run
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    11
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    12
run: makefile
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    13
	$(MAKE) -f makefile
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    14
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    15
#only needed for the definition of $(TOP)
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    16
include Make.proto
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    17
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 749
diff changeset
    18
makefile: mf
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 749
diff changeset
    19
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 749
diff changeset
    20
mf:
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 749
diff changeset
    21
	$(TOP)/rules/stmkmf