openbsd-ports/x11/915resolution/patches/patch-Makefile
sturm e75220a357 Initial import of 915resolution 0.5.2
This software changes the resolution of an available vbios mode. It
patches only the RAM version of the video bios so the new resolution is
lost each time you reboot.

This port supersedes x11/855resolution.

from Ben Lovett <ben at tilderoot.com>
2006-05-20 16:32:05 +00:00

27 lines
490 B
Plaintext

$OpenBSD: patch-Makefile,v 1.1.1.1 2006/05/20 16:32:05 sturm Exp $
--- Makefile.orig Thu Feb 2 06:01:38 2006
+++ Makefile Sun May 14 11:17:54 2006
@@ -1,15 +1,8 @@
-PRG=915resolution
+PROG= 915resolution
+SRCS= 915resolution.c
+LDADD= -li386
+CFLAGS+= -Wall
+NOMAN= Yes
+BINDIR= ${PREFIX}/sbin
-SRCS=915resolution.c
-OBJS=${SRCS:.c=.o}
-
-CFLAGS:=-s -Wall -ggdb
-
-${PRG}: ${OBJS}
-
-clean:
- rm -f ${OBJS} ${PRG} *~
-
-install: ${PRG}
- cp ${PRG} /usr/sbin
-
+.include <bsd.prog.mk>