summaryrefslogtreecommitdiff
path: root/src/cmd/echo/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/echo/makefile')
-rw-r--r--src/cmd/echo/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cmd/echo/makefile b/src/cmd/echo/makefile
new file mode 100644
index 0000000..0301f23
--- /dev/null
+++ b/src/cmd/echo/makefile
@@ -0,0 +1,10 @@
+all: echo
+ @cp echo $(PROROOT)/build/bin/echo
+
+echo: echo.c
+ $(CC) -o echo echo.c
+
+clean:
+ @rm -r echo
+
+.PHONY: all clean \ No newline at end of file