mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-28 04:00:06 +08:00
9 lines
106 B
Makefile
9 lines
106 B
Makefile
SRC_DIR = src
|
|
|
|
.PHONY: default
|
|
default:
|
|
$(MAKE) -C $(SRC_DIR)
|
|
|
|
clean:
|
|
$(MAKE) -C $(SRC_DIR) clean
|