Include dslc Java build as submake

This will now automatically build on recursive target `all'.

* Makefile.am (SUBDIRS): Add `src/current/src'.
* src/current/src/Makefile: (.PHONY): Add `all'.
  (all): New target.  Alias to `dslc'.
master
Mike Gerwitz 2018-10-08 23:07:41 -04:00
parent 7e69a0c2b6
commit 4ad0c5d1be
2 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##
SUBDIRS = doc progtest
SUBDIRS = src/current/src doc progtest
path_src = src
path_test = test

View File

@ -2,8 +2,9 @@
dslc_src := $(wildcard com/lovullo/dslc/*.java)
dslc_bin := $(dslc_src:.java=.class)
.PHONY: dslc clean
.PHONY: all all-nodoc dslc clean
all: dslc
dslc: dslc.jar
%.class: %.java