summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHåkon Nessjøen <haakon.nessjoen@gmail.com>2010-09-30 00:13:13 +0200
committerHåkon Nessjøen <haakon.nessjoen@gmail.com>2010-09-30 00:13:13 +0200
commit87341fcc53b58d270528192607d3ce547abffa77 (patch)
tree4e00b649e1b6763047f5638e0a09c536771dd48a /Makefile
parentc90ce96f3f86404ee85b390a3ed4b575a257423d (diff)
downloadMAC-Telnet-87341fcc53b58d270528192607d3ce547abffa77.tar.gz
MAC-Telnet-87341fcc53b58d270528192607d3ce547abffa77.zip
Added a simple tool for listing local mikrotik routers by mac address
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 58738ee..d48263f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,13 @@
-all: mactelnet
+all: mactelnet mndp
clean: dist-clean
dist-clean:
- rm -f mactelnet
+ rm -f mactelnet mndp
mactelnet: config.h main.c udp.h udp.c mactelnet.c mactelnet.h console.c console.h devices.c devices.h
gcc -g -o mactelnet -lcrypto main.c udp.c mactelnet.c console.c devices.c
+
+mndp: config.h mndp.c
+ gcc -g -o mndp mndp.c