1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/editors/wily/files/patch-Makefile
Joseph Koshy 8c62080ebc o Build and install some tools in the wily tarball to make the behaviour
of `wily' closer to that of `acme'.
o Freshen ${MASTER_SITE}.
o Hand over maintainership to Serge Gagnon <gagnon__s@videotron.ca>

PR:		ports/47157
Submitted by:	Serge Gagnon <gagnon__s@videotron.ca>
2003-02-05 06:36:11 +00:00

28 lines
668 B
Plaintext

--- Makefile.in.orig Sun Jan 19 08:44:47 2003
+++ Makefile.in Sun Jan 19 08:49:06 2003
@@ -2,9 +2,9 @@
srcdir=@srcdir@
VPATH=@srcdir@
-SUBDIRS=libXg libframe libmsg wily
+SUBDIRS=libXg libframe libmsg wily tools/win
-all: wily/wily
+all: wily/wily win
wily/wily: libXg/libXg.a libframe/libframe.a libmsg/libmsg.a
cd wily; $(MAKE) $(MFLAGS)
@@ -14,9 +14,11 @@
cd libframe; $(MAKE) $(MFLAGS) all
libmsg/libmsg.a:
cd libmsg; $(MAKE) $(MFLAGS) all
-
+win:
+ cd tools/win; $(MAKE) $(MFLAGS)
install: all
cd wily; $(MAKE) $(MFLAGS) install
+ cd tools/win; $(MAKE) $(MFLAGS) install
clean:
for i in $(SUBDIRS); do \
(cd $$i; $(MAKE) $(MFLAGS) $@); \