shithub: mc

Download patch

ref: 077b43497cb528d529f0d7380b0ebd58e46b0674
parent: d660f92ea19fe51531e7e5bc562a79de7f75a792
author: Ori Bernstein <[email protected]>
date: Fri Jun 15 14:55:10 EDT 2012

Make the utils build wit the new world order.

--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
 SUB = parse \
       opt \
-      8
+      8 \
+      util
 
 -include config.mk
 include mk/c.mk
--- a/util/Makefile
+++ b/util/Makefile
@@ -1,8 +1,6 @@
 BIN=muse
 OBJ=main.o
 
-CFLAGS+=-I../parse
-LDFLAGS+=-L../parse -lparse
-EXTRADEP=../parse/libparse.a
+DEPS=../parse/libparse.a
 
 include ../mk/c.mk