From eaac5479fd8f65687ac2ef8d381afe13f5dc85f6 Mon Sep 17 00:00:00 2001 From: proski Date: Sun, 1 Jun 2008 17:39:48 +0000 Subject: [PATCH] Rename remaining instances of ALL to PROGRAMS git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3693 0192ed92-7a03-0410-a25b-9323aeb14dbd --- tools/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index b9df3e7..5d70089 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -85,7 +85,7 @@ wpakey: wpakey.c install: all install -d $(DESTDIR)$(BINDIR) - for i in $(ALL); do \ + for i in $(PROGRAMS); do \ install $$i $(DESTDIR)$(BINDIR)/$$i; \ $(STRIP) $(DESTDIR)$(BINDIR)/$$i; \ done @@ -97,10 +97,10 @@ install: all done uninstall: - for i in $(ALL); do \ + for i in $(PROGRAMS); do \ rm -f $(DESTDIR)$(BINDIR)/$$i; \ done - for i in $(ALL:=.8); do \ + for i in $(PROGRAMS:=.8); do \ rm -f $(DESTDIR)$(MANDIR)/man8/$$i; \ done for d in $(SUBDIRS); do \ @@ -108,7 +108,7 @@ uninstall: done clean: - rm -f $(ALL) core a.out + rm -f $(PROGRAMS) core a.out for d in $(SUBDIRS); do \ $(MAKE) -C $$d clean; \ done