*** empty log message ***
This commit is contained in:
32
tecs/Makefile
Normal file
32
tecs/Makefile
Normal file
@@ -0,0 +1,32 @@
|
||||
#---------------------------------------------------------------------------
|
||||
# Makefile for the TECS Client library
|
||||
#
|
||||
# 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
|
||||
|
||||
#------------ 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
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) $*.c
|
||||
|
||||
tecsl: $(OBJ)
|
||||
- rm libtecsl.a
|
||||
ar cr libtecsl.a $(OBJ)
|
||||
ranlib libtecsl.a
|
||||
|
||||
clean:
|
||||
rm *.o
|
||||
rm *.a
|
||||
Reference in New Issue
Block a user