Files
sics/tecs/Makefile
2000-04-05 08:32:32 +00:00

27 lines
686 B
Makefile

#---------------------------------------------------------------------------
# Makefile for the TECS Client library
#
# Markus Zolliker, March 2000
#--------------------------------------------------------------------------
OBJ= tecs_cli.o coc_client.o coc_util.o err_handling.o \
str_util.o str_buf.o coc_server.o tecs_lsc.o tecs_serial.o \
coc_logfile.o tecs_dlog.o
#------------ for DigitalUnix
CC=cc
CFLAGS= -std1 -g -c -warnprotos -I. -I../hardsup
.c.o:
$(CC) $(CFLAGS) $*.c
tecs: $(OBJ)
- rm libtecsl.a
ar cr libtecsl.a $(OBJ)
ranlib libtecsl.a
- rm TecsServer
cc -o TecsServer -g tecs.c -lm -L. -ltecsl -L../hardsup -lhlib
clean:
rm *.o
rm *.a