Project

General

Profile

Statistics
| Branch: | Revision:

root / mainbox / Makefile @ 38df0012

History | View | Annotate | Download (306 Bytes)

1
SRC=main.c tool.c query.c event.c util.c
2
HDR=tool.h query.h event.h util.h ../tooltron_mb.h
3

    
4
FLAGS=-O2 -g -Wall -I.. `pkg-config --cflags --libs libmodbus libcurl`
5

    
6
all: tooltron
7

    
8
tooltron: $(SRC) $(HDR)
9
	gcc $(SRC) $(FLAGS) -o $@
10

    
11
install: tooltron
12
	cp tooltron /usr/local/bin
13

    
14
clean:
15
	rm -f *.o tooltron