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