summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2008-01-30 21:21:36 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2008-01-30 21:21:36 +0000
commitf03bac334093c5e0ed316ad35aca89c75dd4fab1 (patch)
tree4bbe65f2c6be12c06837c612a3572ded39ea4b97
parentb1fc8748636f76b87e781816e0c512688abd8bae (diff)
remove useless rules for .cpp files.
-rw-r--r--lib/libGL/Makefile28
1 files changed, 1 insertions, 27 deletions
diff --git a/lib/libGL/Makefile b/lib/libGL/Makefile
index 6f5a6b26c..96b90d173 100644
--- a/lib/libGL/Makefile
+++ b/lib/libGL/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.13 2007/11/27 09:55:06 matthieu Exp $
+# $OpenBSD: Makefile,v 1.14 2008/01/30 21:21:35 matthieu Exp $
all: ${OBJS}
LIB= GL
@@ -481,29 +481,3 @@ CLEANFILES+= glxeval.c glxpixel.c
.PATH: ${MESA}/drivers/common
.PATH: ${MESA}/drivers/x11
.PATH: ${GLX}
-
-.SUFFIXES: .cpp
-
-.cpp.o:
- @echo "${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}"
- @${COMPILE.cc} ${.IMPSRC} -o ${.TARGET}.o
- @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
- @rm -f ${.TARGET}.o
-
-.cpp.go:
- @echo "${COMPILE.cc} -g ${.IMPSRC} -o ${.TARGET}"
- @${COMPILE.cc} -g ${.IMPSRC} -o ${.TARGET}.o
- @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
- @rm -f ${.TARGET}.o
-
-.cpp.po:
- @echo "${COMPILE.cc} -p ${.IMPSRC} -o ${.TARGET}"
- @${COMPILE.cc} -p ${.IMPSRC} -o ${.TARGET}.o
- @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
- @rm -f ${.TARGET}.o
-
-.cpp.so:
- @echo "${COMPILE.cc} ${PICFLAG} -DPIC ${.IMPSRC} -o ${.TARGET}"
- @${COMPILE.cc} ${PICFLAG} -DPIC ${.IMPSRC} -o ${.TARGET}.o
- @${LD} -X -r ${.TARGET}.o -o ${.TARGET}
- @rm -f ${.TARGET}.o