1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
$NetBSD: patch-aa,v 1.21 2005/05/12 22:34:53 kristerw Exp $
--- makefile.unix.orig 2005-05-12 23:02:10.000000000 +0200
+++ makefile.unix 2005-05-12 23:07:19.000000000 +0200
@@ -33,7 +33,7 @@
###########################################################################
# Uncomment one of these.
-TARGET = mame
+# TARGET = mame
# TARGET = mess
# TARGET = mage
# TARGET = mmsnd
@@ -88,7 +88,7 @@
# just as well. However, stay away from the `cc' Ultrix compiler if
# possible.
-CC = gcc
+# CC = gcc
# CC = cc
# CC = icc
# CC = c89
@@ -109,7 +109,7 @@
# If you want to use whatever CFLAGS are currently set in your
# environment, then comment this out.
-CFLAGS =
+# CFLAGS =
###########################################################################
@@ -118,7 +118,7 @@
###########################################################################
# GCC on x86
-CFLAGS = -O2 -Wall -Wno-unused
+# CFLAGS = -O2 -Wall -Wno-unused
# GCC on x86 with some optimizations
# CFLAGS = -O2 -Wall -Wno-unused -mcpu=i686 -fomit-frame-pointer \
@@ -523,7 +523,7 @@
###########################################################################
# i386, GNU asm
-MY_CPU = i386
+# MY_CPU = i386
# i386, no asm -- needed for the Intel C++ compiler, which does not fully
# understand GCC's inline assembly syntax, though you may still enable
@@ -558,7 +558,7 @@
###########################################################################
# Linux
-ARCH = linux
+# ARCH = linux
# FreeBSD
# ARCH = freebsd
@@ -701,7 +701,7 @@
X11_MITSHM = 1
# Use Xv extension for hardware scaling.
-X11_XV = 1
+# X11_XV = 1
# Enable XFree86 DGA. This also causes "make install" to set the suid bit
# on the executable.
@@ -725,8 +725,8 @@
# X11LIB = -L/usr/lib/X11
# Standard location for XFree86
-X11INC = -I/usr/X11R6/include
-X11LIB = -L/usr/X11R6/lib
+# X11INC = -I/usr/X11R6/include
+# X11LIB = -L/usr/X11R6/lib
# Standard location for Sun systems
# X11INC = -I/usr/openwin/include
|