tinycc/Makefile

9 lines
100 B
Makefile

SRC_DIR = src
.PHONY: default
default:
$(MAKE) -C $(SRC_DIR)
clean:
$(MAKE) -C $(SRC_DIR) clean