#
# Makefile,v 1.1 1994/01/28 17:06:50 franktor Exp
#/

SUBDIRS = marc
OBJS = strntol.o
SRCS = strntol.c
CPPFLAGS = -I../include

CC = gcc -g $(WARN)
WARN    = -W -Wpointer-arith -Wcast-qual -Wswitch $$W
# CCFLAGS = -Wall -g

all: $(OBJS)

externals:
	(cd marc; make)

depend:
	makedepend -s "# DO NOT DELETE" -- $(CPPFLAGS) -- $(SRCS)

clean:
	rm -f $(PROG) $(OBJS) *.[ao] *~ core *.log a.out *.bak

proto:
	cextract +Ap -o ../include/utilproto.h $(SRCS)

# DO NOT DELETE

strntol.o: /usr/include/stdio.h
