aboutsummaryrefslogtreecommitdiffstats
path: root/client/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'client/Makefile')
-rw-r--r--client/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/client/Makefile b/client/Makefile
deleted file mode 100644
index f447307..0000000
--- a/client/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-SRC=$(wildcard *.erl)
-BIN=$(SRC:.erl=.beam)
-
-.PHONY: all clean
-
-#######################
-
-all: $(BIN)
-
-%.beam: %.erl
- erlc $<
-
-#######################
-
-clean:
- -$(RM) $(BIN)