swc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/swc
Log | Files | Refs | README | LICENSE

commit 58e9e5b44e270e3dc1404fe6e02f5a57544763b9
parent 3e61ffe2af4806f4dd46330317df136d93c525ad
Author: Michael Forney <mforney@mforney.org>
Date:   Fri, 24 Jan 2014 14:29:24 -0800

Makefile: Remove check-dependencies target

Diffstat:
MMakefile | 8--------
Mcommon.mk | 3---
Mlaunch/local.mk | 3---
3 files changed, 0 insertions(+), 14 deletions(-)

diff --git a/Makefile b/Makefile @@ -33,11 +33,6 @@ else quiet = $(if $2,$2,$($1)) endif -define check_deps - @echo "Checking for dependencies of $1 ($2)" - @$(PKG_CONFIG) --exists --print-errors $2 -endef - FINAL_CFLAGS = $(CFLAGS) -fvisibility=hidden -std=gnu99 FINAL_CPPFLAGS = $(CPPFLAGS) -D_GNU_SOURCE # Required for mkostemp @@ -62,9 +57,6 @@ include $(SUBDIRS:%=%/local.mk) $(foreach dir,BIN LIB INCLUDE PKGCONFIG,$(DESTDIR)$($(dir)DIR)) $(DESTDIR)$(DATADIR)/swc: mkdir -p "$@" -.PHONY: check-dependencies -check-dependencies: $(SUBDIRS:%=check-dependencies-%) - .PHONY: build build: $(SUBDIRS:%=build-%) $(TARGETS) diff --git a/common.mk b/common.mk @@ -1,8 +1,5 @@ # swc: common.mk -.PHONY: check-dependencies-$(dir) -check-dependencies-$(dir): - .PHONY: build-$(dir) build-$(dir): $($(dir)_TARGETS) diff --git a/launch/local.mk b/launch/local.mk @@ -11,9 +11,6 @@ $(dir)_PACKAGES = \ $(dir)/swc-launch: $(dir)/launch.o $(dir)/protocol.o $(link) $(launch_PACKAGE_LIBS) -check-dependencies-$(dir): - $(call check_deps,swc-launch,$(LAUNCH_PACKAGES)) - install-$(dir): $(dir)/swc-launch | $(DESTDIR)$(BINDIR) install -m4755 launch/swc-launch "$(DESTDIR)$(BINDIR)"