Skip to content

Commit

Permalink
Rename remaining instances of ALL to PROGRAMS
Browse files Browse the repository at this point in the history
git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@3693 0192ed92-7a03-0410-a25b-9323aeb14dbd
  • Loading branch information
proski committed Jun 1, 2008
1 parent 4b8b3f3 commit eaac547
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -97,18 +97,18 @@ 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 \
$(MAKE) -C $$d uninstall || exit 1; \
done

clean:
rm -f $(ALL) core a.out
rm -f $(PROGRAMS) core a.out
for d in $(SUBDIRS); do \
$(MAKE) -C $$d clean; \
done
Expand Down

0 comments on commit eaac547

Please sign in to comment.