#
# 5799-WZQ (C) COPYRIGHT = NONE
# LICENSED MATERIALS - PROPERTY OF IBM
#
#$Header:Makefile 12.0$
#$ACIS:Makefile 12.0$
#$Source: /ibm/acis/usr/src/usr.lib/learn/C/RCS/Makefile,v $
#
# Compile the C files neccesary to run the lessons in this directory

SRCS = getline.c getnum.c

OBJS = getline.o getnum.o

.c.o:
	${CC} -c $*.c

all:	${OBJS}

clean:
	-rm -f *.o
