libcg/Makefile

14 lines
163 B
Makefile

#
# Top Makefile
#
.PHONY: all clean
all:
@$(MAKE) -C src all
@$(MAKE) -C examples all
clean:
@$(MAKE) -C src clean
@$(MAKE) -C examples clean