CC=gcc
OBJS=C.o ctags.o fortran.o lisp.o print.o tree.o yacc.o

ctags: $(OBJS)
	$(CC) $(CFLAGS) -o ctags $(OBJS)

clean:
	rm -f $(OBJS)

clobber: clean
	rm -f ctags

install: ctags
	strip ctags
	cp ctags ../../../bin
