#
#  Makefile for internal fast-News-Stuff
#
#
# ----------------------------------
#  T-BBS (c) S.Runge  7/95 
#
#
#defs for OS-System, auto-detected!!!!!
OS_DEFS=`../.osdefs` 
DEF_DEFS=`../.gbldefs` 

CC=gcc
AR=ar

CFLAGS= -O2 -s -w $(OS_DEFS) $(DEF_DEFS) 

OBJ=    db.o news.o global.o
OBJ2=






.c.o:
	$(CC) $(CFLAGS) -c -o $*.o $<

all:	libNNews.a

libNNews.a: $(OBJ) $(OBJ2) 
	$(AR) r libNNews.a $(OBJ) $(OBJ2) 

dep:
	rm -f .depend
	gcc -MM *.c >.depend

.depend:
	gcc -MM *.c >.depend

clean:
	rm -f *~ *.o nohup.out libNNews.a DEAD*

include .depend


