Project

General

Profile

Statistics
| Branch: | Revision:

root / mainbox / Makefile @ dc472500

History | View | Annotate | Download (252 Bytes)

1 7bdb98c5 Tom Mullins
SRC=main.c tool.c
2 dc472500 Tom Mullins
HDR=tool.h ../tooltron_mb.h
3 7bdb98c5 Tom Mullins
4
FLAGS=-O2 -g -Wall -I.. `pkg-config --cflags --libs libmodbus`
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