1: #
     2: # Makefile for the VirOS System Imaging Toolset tools subdir
     3: #
     4: 
     5: ####################
     6: # Global Variables #
     7: ####################
     8: TOP         = ..
     9: include $(TOP)/build/makefile.common
    10: 
    11: 
    12: SUBDIRS = \
    13: 	bin \
    14: 	checkport \
    15: 	scripts \
    16: 	splitter \
    17: 	ZyX-Live-OS
    18: 
    19: all clean install uninstall: $(SUBDIRS)
    20: 	for subdir in $(SUBDIRS); do (cd $${subdir}; $(MAKE) $@); done
    21: 
    22: default:
    23: 	make all
    24: