parent
6a008f7148
commit
09ef98e7ae
@ -1,20 +0,0 @@
|
||||
|
||||
all: weighttp
|
||||
|
||||
override SOURCES := $(wildcard src/*.c)
|
||||
override OBJECTS := $(patsubst %.c,%.o,$(SOURCES))
|
||||
|
||||
override LDFLAGS += -lev -lpthread
|
||||
override CFLAGS += '-DVERSION="0.2"'
|
||||
|
||||
weighttp: $(OBJECTS)
|
||||
$(CC) $(LDFLAGS) -o weighttp $^
|
||||
|
||||
install: weighttp
|
||||
mkdir -p $(DESTDIR)/usr/bin
|
||||
cp weighttp $(DESTDIR)/usr/bin/
|
||||
|
||||
clean:
|
||||
rm -f weighttp $(OBJECTS)
|
||||
|
||||
.PHONY: all install clean
|
@ -0,0 +1,37 @@
|
||||
From: =?UTF-8?q?Stefan=20B=C3=BChler?= <stbuehler@web.de>
|
||||
Date: Fri, 10 May 2013 13:48:29 +0200
|
||||
Subject: Makefile to replace waf handling
|
||||
|
||||
---
|
||||
Makefile | 22 ++++++++++++++++++++++
|
||||
1 file changed, 22 insertions(+)
|
||||
create mode 100644 Makefile
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
new file mode 100644
|
||||
index 0000000..741b8a1
|
||||
--- /dev/null
|
||||
+++ b/Makefile
|
||||
@@ -0,0 +1,22 @@
|
||||
+
|
||||
+all: weighttp
|
||||
+
|
||||
+override SOURCES := $(wildcard src/*.c)
|
||||
+override OBJECTS := $(patsubst %.c,%.o,$(SOURCES))
|
||||
+
|
||||
+# VERSION must be set in env
|
||||
+
|
||||
+LIBS += -lev -lpthread
|
||||
+override CFLAGS += '-DVERSION="$(VERSION)"'
|
||||
+
|
||||
+weighttp: $(OBJECTS)
|
||||
+ $(CC) $(LDFLAGS) -o weighttp $^ $(LIBS)
|
||||
+
|
||||
+install: weighttp
|
||||
+ mkdir -p $(DESTDIR)/usr/bin
|
||||
+ cp weighttp $(DESTDIR)/usr/bin/
|
||||
+
|
||||
+clean:
|
||||
+ rm -f weighttp $(OBJECTS)
|
||||
+
|
||||
+.PHONY: all install clean
|
@ -1,3 +1,4 @@
|
||||
0001-Fix-header-parsing-to-compare-HTTP-header-field-name.patch
|
||||
0002-Corrected-Host-header-handling-fixes-2477.patch
|
||||
0003-User-Agent-header-no-longer-needs-a-leading-space.patch
|
||||
0001-Makefile-to-replace-waf-handling.patch
|
||||
0002-Fix-header-parsing-to-compare-HTTP-header-field-name.patch
|
||||
0003-Corrected-Host-header-handling-fixes-2477.patch
|
||||
0004-User-Agent-header-no-longer-needs-a-leading-space.patch
|
||||
|
@ -1,11 +1,7 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
DEB_MAKE_INSTALL_TARGET=install
|
||||
VERSION := $(shell dpkg-parsechangelog | awk '/Version:/ { print $2 }' | sed -e 's/-[^-]*$$//')
|
||||
export VERSION
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/makefile.mk
|
||||
|
||||
DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/weighttpd
|
||||
DEB_MAKE_CHECK_TARGET :=
|
||||
|
||||
# Add here any variable or target overrides you need.
|
||||
%:
|
||||
dh $@
|
||||
|
@ -1 +1 @@
|
||||
1.0
|
||||
3.0 (quilt)
|
||||
|
Loading…
Reference in new issue