1 2 3 4 5 6 7 8 9 10
OBJDIR ?= obj .PHONY = all clean all: cmake -S $(shell pwd) -B $(OBJDIR) make -C $(OBJDIR) clean: rm -rf $(OBJDIR)