mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 04:50:03 -04:00
15 lines
368 B
Plaintext
15 lines
368 B
Plaintext
$NetBSD: patch-Makefile,v 1.1 2016/08/17 15:55:53 jaapb Exp $
|
|
|
|
Fix Makefile dependency problems.
|
|
--- Makefile.orig 2016-03-03 15:24:37.000000000 +0000
|
|
+++ Makefile
|
|
@@ -5,7 +5,7 @@ result.ml: which_result.ml
|
|
cp `ocaml which_result.ml` result.ml
|
|
|
|
.PHONY: byte
|
|
-byte: result.ml
|
|
+byte result.cma: result.ml
|
|
ocamlc -c result.ml
|
|
ocamlc -a -o result.cma result.cmo
|
|
|