build: remove old build system

This commit is contained in:
Carlos Gomes Martinho
2020-03-23 14:07:59 +01:00
committed by Carlos Gomes Martinho
parent 6fb724698f
commit bd2fa5759b
10 changed files with 0 additions and 384 deletions

View File

@ -1,25 +0,0 @@
# Copyright (c) 2010
# Robert Johansson
# Raditex AB.
# All rights reserved.
LIB = libmbus.so
CFLAGS = -Wall -W -g -fPIC -I.
HEADERS = mbus.h mbus-protocol.h
OBJS = mbus.o mbus-protocol.o
$(LIB): $(OBJS)
gcc -shared -o $(LIB) $(OBJS)
all: $(LIB)
clean:
rm -rf *.o *core core $(LIB)
test:
(cd test && make)
install: all
cp $(LIB) /usr/local/freescada/lib
cp $(HEADERS) /usr/local/freescada/include