*** empty log message ***

This commit is contained in:
cvs
2000-03-15 10:26:11 +00:00
parent 49669ee311
commit 3b3d926d30
2 changed files with 12 additions and 15 deletions

View File

@@ -3,29 +3,25 @@
#
# Markus Zolliker, March 2000
#--------------------------------------------------------------------------
OBJ= tecc.o client.o coc.o buf.o errhdl.o util.o
#---------- for Redhat linux
#cc= GCC
#cflags= -i/USR/LOCAL/INCLUDE -i. -i../ -dlinux -G -C
OBJ= tecc.o client.o coc.o buf.o errhdl.o util.o \
server.o lsc.o serutil.o logfile.o dlog.o \
asynsrv_utility.o strjoin.o geterrno.o
#------------ for DigitalUnix
CC=cc
CFLAGS= -I/data/koenneck/include -I. -I../ -std1 -g -c
#------------ for DigitalUnix with Fortify
#CFLAGS= -I/data/koenneck/include -DFORTIFY -I. -I../ -std1 -g -c
#------------ for CYGNUS toolchain on Win32
#CC=gcc
#CFLAGS= -I. -I../ -DCYGNUS -g -c
CFLAGS= -std1 -g -c -I.
.c.o:
$(CC) $(CFLAGS) $*.c
tecsl: $(OBJ)
tecs: $(OBJ)
- rm libtecsl.a
ar cr libtecsl.a $(OBJ)
ranlib libtecsl.a
- rm TecsServer
cc -o TecsServer -g tecs.c -lm -L. -ltecsl
- rm tcli
cc -o tcli -g tcli.c -lm -L. -ltecsl
clean:
rm *.o