7740958643
- Remove lib/info.c that doesn't belong in the lib and add it into the bins. - Every binary now uses its own directory on bin/. This is in preparation for future changes for correct behaviour of the library and binaries. --HG-- extra : convert_revision : 880d16378bf940c4f5478de0362afe883cd5fd2c
26 lines
404 B
Makefile
26 lines
404 B
Makefile
include ../vars.mk
|
|
|
|
SUBDIRS = xbps-bin
|
|
SUBDIRS += xbps-cmpver
|
|
SUBDIRS += xbps-digest
|
|
SUBDIRS += xbps-pkgdb
|
|
SUBDIRS += xbps-repo
|
|
SUBDIRS += xbps-src
|
|
|
|
.PHONY: all
|
|
all:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir; \
|
|
done
|
|
|
|
.PHONY: install
|
|
install:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir install; \
|
|
done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir clean; \
|
|
done
|