diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2011-12-06 00:18:01 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2011-12-06 00:18:01 +0000 |
commit | 9bccaac7efbf7221704154149e5df45e7567c831 (patch) | |
tree | 83877cfd0e3af722bf6f4642d2ab40a9586bfed3 /Makefile | |
parent | 18dd11d1c2201418198d142ae5b2822722e65458 (diff) | |
download | verteco-9bccaac7efbf7221704154149e5df45e7567c831.tar.gz |
Create Makefile.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
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) |