]> git.ipfire.org Git - pakfire.git/blobdiff - Makefile
Explicitely add hardening CFLAGS.
[pakfire.git] / Makefile
index 29d2cffc8a2abab0772b104235e3efd719171de2..581332ceed5ec28f7a5c7a7275c2a6c816d969e1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,35 +1,42 @@
 
-DESTDIR ?= /
+include Makeconfig
 
-all: po build
+SUBDIRS = po python tools tools/fake-environ
+
+all: build
 
 .PHONY: build
 build:
-       python setup.py build
+       for dir in $(SUBDIRS); do \
+               $(MAKE) -C $${dir} || exit; \
+       done
 
 .PHONY: clean
 clean:
-       python setup.py clean
-       -rm -rfv build
+       for dir in $(SUBDIRS); do \
+               $(MAKE) -C $${dir} clean || exit; \
+       done
 
 .PHONY: dist
 dist:
-       python setup.py sdist
-
-.PHONY: bdist
-bdist:
-       python setup.py bdist
+       git archive --format=tar --prefix=$(PACKAGE_NAME)-$(PACKAGE_VERSION)/ HEAD | \
+               gzip -9 > $(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.gz
 
 .PHONY: install
-install: po
-       python setup.py install --root=$(DESTDIR) --prefix=/usr
+install: build
+       for dir in $(SUBDIRS); do \
+               $(MAKE) -C $${dir} install || exit; \
+       done
 
-       -mkdir -pv $(DESTDIR)/usr/lib/pakfire
-       ln -svf ../../bin/pakfire $(DESTDIR)/usr/lib/pakfire/builder
+       -mkdir -pv $(DESTDIR)$(PREFIX)/lib/pakfire/macros
+       cp -vf macros/*.macro $(DESTDIR)$(PREFIX)/lib/pakfire/macros
 
-       -mkdir -pv $(DESTDIR)/etc/pakfire.repos.d
-       cp -vf examples/pakfire.conf $(DESTDIR)/etc/pakfire.conf
-       cp -vf examples/pakfire.repos.d/* $(DESTDIR)/etc/pakfire.repos.d/
+       # Install example configuration.
+       -mkdir -pv $(DESTDIR)/etc/pakfire/repos
+       for file in general.conf builder.conf client.conf daemon.conf distros; do \
+               [ -e "$(DESTDIR)/etc/pakfire/$${file}" ] && continue; \
+               cp -rvf examples/$${file} $(DESTDIR)/etc/pakfire/; \
+       done
 
 .PHONY: check
 check:
@@ -37,5 +44,8 @@ check:
 
 .PHONY: po
 po:
-       find pakfire src scripts -name "*.py" -or -name "*.c" -or -name "pakfire" -and -type f | \
-               grep -v "__version__.py" | sort > po/POTFILES.in
+       $(MAKE) -C po
+
+.PHONY: pot
+pot:
+       $(MAKE) -C po pot