# -*- Mode: Fundamental -*- 
# This file is part of xnetmaj
# 
# Makefile -- 
# 
# $Id$
# Author          : NBC02365@niftyserve.or.jp
# Created On      : Tue May  9 00:47:26 1995
# Last Modified By: NBC02365@niftyserve.or.jp
# Last Modified On: Wed May 24 04:06:18 1995

SRC=readexpr.c expr.c error.c init.c int.c name.c xmalloc.c
RANLIB=ranlib

OBJ=$(SRC:.c=.o)

CFLAGS=$(G) $(CCFLAGS) -DPOSIX

all: $(OBJ)
	ar ru libnu.a $(OBJ)
	$(RANLIB)  libnu.a
#	cc test.c $(OBJ)

$(OBJ): 

clean:
	/bin/rm -rf *.o *~ *.core core *.a a.out 2> /dev/null
