Renamed files and comments to fit new project name
[mtetherd] / Makefile
index 5e7494f..d226f7a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,14 +8,14 @@ SSH_ADDRESS = developer@192.168.253.254
 SSH_SCP = scp
 SSH_SSH = ssh
 SSH_PATH = /home/developer
-DATA_FILES = main.c device.c device.h
+DATA_FILES = main.c device.c device.h event.d-mtetherd
 
-maemo-tethering: main.o device.o
+mtetherd: main.o device.o
        $(MAD) $(CC) $(LDFLAGS) $(LIBS) -o $@ $^
 
 %PHONY: copy run clean
 
-copy: maemo-tethering $(DATA_FILES)
+copy: mtetherd $(DATA_FILES)
        $(SSH_SCP) $^ $(SSH_ADDRESS):$(SSH_PATH)
 
 run: copy