Project

General

Profile

Statistics
| Branch: | Revision:

root / mainbox / Makefile @ 7bdb98c5

History | View | Annotate | Download (235 Bytes)

1 7bdb98c5 Tom Mullins
SRC=main.c tool.c
2
HDR=tool.h
3
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