aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2011-12-06 00:18:01 +0000
committerJonathan McCrohan <jmccrohan@gmail.com>2011-12-06 00:18:01 +0000
commit9bccaac7efbf7221704154149e5df45e7567c831 (patch)
tree83877cfd0e3af722bf6f4642d2ab40a9586bfed3 /Makefile
parent18dd11d1c2201418198d142ae5b2822722e65458 (diff)
downloadverteco-9bccaac7efbf7221704154149e5df45e7567c831.tar.gz
Create Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c4a7d89
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+CC=gcc
+CFLAGS=-I/usr/include/modbus
+LIBS=-lmodbus -lconfig
+SDIR=src
+
+modbuslog: $(SDIR)/modbuslog.c
+ $(CC) -o $(SDIR)/$@ $^ $(CFLAGS) $(LIBS)