######################################################################## # KOALA # Deploy simple C-codes for lightcurve generation # Usage: ######################################################################## include Makefile.def ALL = bin/lcconvex bin/lcconcav conf all: $(foreach DIR, $(ALL), make -C $(DIR) install ; ) bin: make -C bin install conf: make -C conf install # Cleaning stuff clean: $(foreach DIR, $(ALL), make -C $(DIR) $@ ; ) veryclean: clean $(foreach DIR, $(ALL), make -C $(DIR) $@ ; ) superclean: veryclean $(foreach DIR, $(ALL), make -C $(DIR) $@ ; )