openbsd-ports/devel/libregexp9/patches/patch-Makefile
pvalchev 168a3b02ef - Use common Makefile for all architectures, thus allowing this to build
on non-i386 platforms - there is no need to be MD
- Don't patch files into existence, use files/ for that
- Change wrong LIB_DEPENDS to BUILD_DEPENDS because these libraries
are all static.
- Add appropriate regress targets with REGRESS_DEPENDS or set
NO_REGRESS where such tests are not available.
- Do not link with -g
2003-03-03 00:51:37 +00:00

27 lines
637 B
Plaintext

--- Makefile.orig Thu Feb 13 08:05:34 2003
+++ Makefile Sun Mar 2 16:55:53 2003
@@ -10,7 +10,7 @@ OBJTYPE!=uname -m | sed 's;i.86;386;; s;
# the gnu rules will mess up bsd but not vice versa,
# hence the gnu rules come first.
-include Make.$(SYSNAME)-$(OBJTYPE)
+include Make.$(SYSNAME)
PREFIX=/usr/local
@@ -48,12 +48,14 @@ install: $(LIB)
test: test.$O $(LIB)
$(CC) -o test test.$O $(LIB) -L/usr/local/lib -lfmt -lutf
+ ./test
test2: test2.$O $(LIB)
$(CC) -o test2 test2.$O $(LIB) -L/usr/local/lib -lfmt -lutf
$(LIB): $(OFILES)
$(AR) $(ARFLAGS) $(LIB) $(OFILES)
+ $(RANLIB) $(LIB)
NUKEFILES+=$(LIB)
.c.$O: