mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
- Leave out the DOCS option for now because the required conversion of XML to HTML has not been figured out yet. - No more dependency on compat6x - Fetch sources from GitHub - update license to GPLv3 PR: 242402 Submitted by: Joachim Werner Approved by: maintainer (dds@) MFH: 2020Q2
31 lines
858 B
Text
31 lines
858 B
Text
--- Makefile.orig 2019-11-04 16:42:35 UTC
|
|
+++ Makefile
|
|
@@ -25,6 +25,8 @@ HSQLDB_URL=http://downloads.sourceforge.net/project/hs
|
|
DEFAULT_HSQLDB_DIR=$(CSCOUT_DIR)/hsqldb-$(HSQLDB_VERSION)/hsqldb
|
|
export HSQLDB_DIR?=$(DEFAULT_HSQLDB_DIR)
|
|
|
|
+all: .PHONY install
|
|
+
|
|
.PHONY: src/build/cscout swill/libswill.a btyacc/btyacc
|
|
|
|
src/build/cscout: swill/libswill.a btyacc/btyacc
|
|
@@ -33,15 +35,16 @@ src/build/cscout: swill/libswill.a btyacc/btyacc
|
|
swill/libswill.a: swill
|
|
cd swill && $(MAKE)
|
|
|
|
-swill:
|
|
- git clone https://github.com/dspinellis/swill.git
|
|
+swill: swillconfig
|
|
+
|
|
+swillconfig:
|
|
cd swill && ./configure
|
|
|
|
btyacc/btyacc: btyacc
|
|
cd btyacc && $(MAKE)
|
|
|
|
btyacc:
|
|
- git clone https://github.com/dspinellis/btyacc
|
|
+ #git clone https://github.com/dspinellis/btyacc
|
|
|
|
# Default installation of HSQLDB
|
|
$(DEFAULT_HSQLDB_DIR): hsqldb-$(HSQLDB_VERSION).zip
|