-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comments for top level Rules and java rules/dummy
- Loading branch information
Showing
3 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
# Specify how to compile + how to run | ||
CC:=javac | ||
CFLAGS:= | ||
OBJ:=$(SRC:.java=.class) | ||
RUNCMD:=java | ||
RUNFLAGS:=-cp . $(OBJ:.class=) | ||
|
||
# include the top level Rules.mk (note this is called from the context | ||
# of the Makefile in a directory below this one) | ||
include ../../Rules.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Specify the source file | ||
SRC:=Dummy.java | ||
|
||
include ../Rules.mk |