aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2012-02-09 15:33:02 -0500
committerBrian Cully <bjc@kublai.com>2012-02-09 15:45:29 -0500
commitb9892e56efff45f76d505337fc03f3e04f7c6073 (patch)
treea8491258f6ecc26ce445d87ee63958196ed4498d /src/Makefile
parent44d5b82c5d48a3b8eb58642ccc882357392c7274 (diff)
downloadmysqlerl-b9892e56efff45f76d505337fc03f3e04f7c6073.tar.gz
mysqlerl-b9892e56efff45f76d505337fc03f3e04f7c6073.zip
Remove port module and port supervisor
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 7fb96de..40062eb 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -3,13 +3,14 @@ EFLAGS = -W +debug_info
BEAMDIR = ../ebin
BINS = $(BEAMDIR)/mysqlerl.app
-BEAMS = mysqlerl.beam mysqlerl_app.beam mysqlerl_connection.beam \
- mysqlerl_port.beam mysqlerl_port_sup.beam mysqlerl_sup.beam
+BEAMS = mysqlerl.beam mysqlerl_app.beam mysqlerl_sup.beam \
+ mysqlerl_connection.beam
all: $(BEAMDIR) $(BINS)
clean:
rm -rf *.beam
+ rm -rf $(BEAMDIR)/*.beam
rm -rf $(BINS) $(BEAMS) $(BEAMDIR)/mysqlerl.app
%.beam: %.erl