diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-12-03 22:01:34 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-12-03 22:01:34 +0000 |
commit | f00f52b181934c4774435075b36f9850a3d4311b (patch) | |
tree | 5265a109cd4d53d148cb4535584e75ce88a1fe50 /Makefile | |
parent | aa8f8134eb700ab340bc191cef0a1a6ecc32e49e (diff) | |
download | verteco-f00f52b181934c4774435075b36f9850a3d4311b.tar.gz |
makefile: fix indentation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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 |