# # Makefile for librune # # (c)Copyright 1993-2014, Matthew Dillon, All Rights Reserved. See the # COPYRIGHT file at the base of the distribution. LIB= rune SRCS= debug_lex.c parse.c parse1.c parse2.c parse3.c SRCS+= exp.c stmt.c lex.c sym.c strtable.c type.c typeq.c decl.c declq.c SRCS+= misc.c resolve.c collapse.c info.c INCS= export.h lex.h sym.h type.h INCS+= decl.h exp.h stmt.h parse.h context.h INCSDIR= /include/librune CFLAGS+= -I${.CURDIR}/.. beforedepend: beforeinstall beforeinstall: mkdir -p ${DESTDIR}/${INCSDIR} mkdir -p ${DESTDIR}/${LIBDIR} mkdir -p ${DESTDIR}/${LIBDIR}/profile .include