openbsd-ports/devel/jam/patches/patch-Makefile
naddy b10883fded Import jam 2.4; submitted by Jonathan Auer <jda@auerfamily.org>.
Jam is a make(1) replacement that makes building simple things simple and
building complicated things manageable.
2003-02-13 14:51:43 +00:00

24 lines
464 B
Plaintext

$OpenBSD: patch-Makefile,v 1.1.1.1 2003/02/13 14:51:43 naddy Exp $
--- Makefile.orig Wed Mar 20 18:39:47 2002
+++ Makefile Thu Feb 13 15:18:22 2003
@@ -1,8 +1,8 @@
# Makefile for jam
-CC = cc
+#CC =
TARGET = -o jam0
-CFLAGS =
+#CFLAGS =
# Special flavors - uncomment appropriate lines
@@ -65,7 +65,7 @@ SOURCES = \
rules.c scan.c search.c timestamp.c variable.c
all: jam0
- jam0
+ ./jam0
jam0:
$(CC) $(TARGET) $(CFLAGS) $(SOURCES) $(LINKLIBS)