## Makefile for nistcl
##
## $Id: Makefile,v 1.1 1994/02/04 18:24:27 mwette Exp $
##
CC= gcc
CFLAGS= -g -I/usr/local/include -Dnis_tcl_init=Tcl_AppInit
LDFLAGS= -g
TCLIBS= \
	-L/usr/local/lib -R/usr/local/lib -ltcl -lsocket -lm -lnsl
TKLIBS = \
	-L/usr/local/lib -R/usr/local/lib -ltk -ltcl \
	-L/opt/X11/lib -R/opt/X11/lib -lX11 -lsocket -lm -lnsl

#all: nistcl nistk

nistcl: nistcl.o
	$(CC) -o nistcl $(LDFLAGS) nistcl.o $(TCLIBS)

#nistk: nistcl.o
#	$(CC) -o nistk $(LDFLAGS) nistcl.o $(TKLIBS)

# --- last line of Makefile ---
