Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.27 KB | None | 0 0
  1. # Minimal makefile that simply recurses into subdirectories and executes
  2. # their makefiles
  3.  
  4. DIRS = udev
  5.  
  6. $(DIRS):
  7.     $(MAKE) -C $@
  8.  
  9. all: $(DIRS)
  10.  
  11. install: MAKE = make install
  12. install: $(DIRS)
  13.  
  14. clean: MAKE = make clean
  15. clean: $(DIRS)
  16.  
  17. .PHONY: clean install $(DIRS)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement