RANLIB=echo
INCLUDE=-I../h
CFLAGS = -O -g -n $(DEFS) $(INCLUDE)  -DlrqE -Ih
LDFLAGS = -g
LINTFLAGS = -u $(DEFS) $(INCLUDE) # add -ha on V7, BSD, remove for USG
CC=gcc

SYS=syscalls
STDIO=stdio
SUP=support
LIBC=libc

OBJS=close.o open.o read.o unlink.o 

SRCS=close.c open.c read.c unlink.c 

all: $(OBJS)

lint: $(SRCS)
	lint $(LINTFLAGS) $(SRCS) > lint

clean:
	rm -f $(OBJS) core lex.yy.c y.tab.h install
