pkgsrc-wip/premake/patches/patch-ab
pancake ;) 9a25137b2a Initial import of premake
Premake is a build script generator. Write a small Lua
program describing your project, and then use Premake to
generate input files for any of these toolsets:

* GNU make
* MS Visual Studio 6
* MS Visual Studio 7
* ...more on the way!

-- TODO --

* ${PATCHDIR}/patch-ab is only for *BSD
* This is a "configure" replacement, could be nice to add a new
  directive as GNU_CONFIGURE for "premake" like: USE_PREMAKE=YES
2003-07-22 16:51:29 +00:00

19 lines
425 B
Text

$NetBSD: patch-ab,v 1.1.1.1 2003/07/22 16:51:30 poppnk Exp $
--- Premake.make.orig 2003-07-22 18:31:12.000000000 +0000
+++ Premake.make 2003-07-22 18:26:40.000000000 +0000
@@ -8,12 +8,12 @@
ifeq ($(CONFIG),Debug)
CFLAGS +=
- LDFLAGS += -ldl
+# LDFLAGS += -ldl
TARGET = premake
endif
ifeq ($(CONFIG),Release)
CFLAGS += -Os
- LDFLAGS += -ldl
+# LDFLAGS += -ldl
TARGET = premake
endif
CXXFLAGS=$(CFLAGS)