aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2012-12-03 22:01:34 +0000
committerJonathan McCrohan <jmccrohan@gmail.com>2012-12-03 22:01:34 +0000
commitf00f52b181934c4774435075b36f9850a3d4311b (patch)
tree5265a109cd4d53d148cb4535584e75ce88a1fe50
parentaa8f8134eb700ab340bc191cef0a1a6ecc32e49e (diff)
downloadverteco-f00f52b181934c4774435075b36f9850a3d4311b.tar.gz
makefile: fix indentation
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 7a6d77c..09085e9 100644
--- a/Makefile
+++ b/Makefile
@@ -32,21 +32,21 @@ FTPHELPERCFLAGS += $(GITTAGFLAG)
LIGHTINGCONTROLCFLAGS += $(GITTAGFLAG)
PHIDGETCONTROLCFLAGS += $(GITTAGFLAG)
-all: modbuslog ftphelper lightingcontrol phidgetcontrol weatherstation_test
+all: modbuslog ftphelper lightingcontrol phidgetcontrol weatherstation_test
-modbuslog: $(SDIR)/modbuslog.c
+modbuslog: $(SDIR)/modbuslog.c
$(CC) -o $(SDIR)/$@ $^ $(MODBUSLOGCFLAGS) $(MODBUSLOGLIBS)
-ftphelper: $(SDIR)/ftphelper.c
+ftphelper: $(SDIR)/ftphelper.c
$(CC) -o $(SDIR)/$@ $^ $(FTPHELPERCFLAGS) $(FTPHELPERLIBS)
-lightingcontrol: $(SDIR)/lightingcontrol.c
+lightingcontrol: $(SDIR)/lightingcontrol.c
$(CC) -o $(SDIR)/$@ $^ $(LIGHTINGCONTROLCFLAGS) $(LIGHTINGCONTROLLIBS)
-phidgetcontrol: $(SDIR)/phidgetcontrol.c
+phidgetcontrol: $(SDIR)/phidgetcontrol.c
$(CC) -o $(SDIR)/$@ $^ $(PHIDGETCONTROLCFLAGS) $(PHIDGETCONTROLLIBS)
-weatherstation_test: $(SDIR)/weatherstation_test.c
+weatherstation_test: $(SDIR)/weatherstation_test.c
$(CC) -o $(SDIR)/$@ $^ $(MODBUSLOGCFLAGS) $(MODBUSLOGLIBS)
install_modbuslog:
@@ -82,6 +82,6 @@ install_phidgetcontrol:
fi
test -f $(PHIDGETCONTROLCRONDIR)/phidgetcontrol || $(INSTALL) -m 644 $(CRONDIR)/phidgetcontrol $(PHIDGETCONTROLCRONDIR)/phidgetcontrol
-installall: install_modbuslog install_ftphelper install_lightingcontrol install_phidgetcontrol
+installall: install_modbuslog install_ftphelper install_lightingcontrol install_phidgetcontrol
-install: all installall
+install: all installall