Skip to content

Commit

Permalink
Makefile: redirect makeflags to sub-makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
AD-Aleksandrov committed Feb 16, 2017
1 parent 5ccba50 commit e8d49f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ BINDIR = /usr/local/bin
DIRS = pos2kml str2str rnx2rtkp convbin rtkrcv

all:
@for i in $(DIRS); do make -C $$i/gcc; done
@for i in $(DIRS); do $(MAKE) -C $$i/gcc; done

install:
@echo installing...
@for i in $(DIRS); do cp $$i/gcc/$$i $(BINDIR); done

clean:
@echo cleaning up...
@for i in $(DIRS); do make -C $$i/gcc clean; done
@for i in $(DIRS); do $(MAKE) -C $$i/gcc clean; done

0 comments on commit e8d49f3

Please sign in to comment.