summaryrefslogtreecommitdiff
path: root/bin/expr/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/expr/Makefile')
-rw-r--r--bin/expr/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/expr/Makefile b/bin/expr/Makefile
new file mode 100644
index 000000000000..c2db2b639aad
--- /dev/null
+++ b/bin/expr/Makefile
@@ -0,0 +1,14 @@
+# /b/source/CVS/src/bin/expr/Makefile,v 1.5 1993/06/14 19:56:06 jtc Exp
+
+PROG= expr
+SRCS= expr.c
+CLEANFILES+= expr.c y.tab.h
+LDADD+= -lgnuregex
+DPADD+= /usr/lib/libgnuregex.a
+
+expr.c:
+ ${YACC} -d ${.IMPSRC}
+ mv y.tab.c expr.c
+
+.include <bsd.prog.mk>
+