diff options
Diffstat (limited to 'lang/J/files/patch-Makefile')
-rw-r--r-- | lang/J/files/patch-Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/lang/J/files/patch-Makefile b/lang/J/files/patch-Makefile new file mode 100644 index 000000000000..5e6360acd4ea --- /dev/null +++ b/lang/J/files/patch-Makefile @@ -0,0 +1,28 @@ +--- Makefile.orig 2018-02-24 19:49:42 UTC ++++ Makefile +@@ -0,0 +1,25 @@ ++.PHONY: all ++all: make-${ARCH} ++ ++.PHONY: make-amd64 ++make-amd64: build-j64 libj-avx ++ ++.PHONY: make-i386 ++make-i386: build-j32 ++ ++.PHONY: init ++init: ++ make/install.sh ++ ++.PHONY: libj-avx ++libj-avx: init ++ make/build_libj.sh j64avx ++ ++build-%: init ++ make/build_jconsole.sh $* ++ make/build_libj.sh $* ++ make/build_tsdll.sh $* ++ ++.PHONY: clean ++clean: ++ rm -rf ${jbld} |