15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
|
# Configuration for NetBSD
|
||
|
|
||
|
include $(TOP)/configs/default
|
||
|
|
||
|
CONFIG_NAME = netbsd
|
||
|
|
||
|
# Compiler and flags
|
||
|
CC = gcc
|
||
|
CXX = g++
|
||
|
CFLAGS = -O2 -fPIC -DUSE_XSHM -I/usr/X11R6/include -DHZ=100
|
||
|
CXXFLAGS = -O2 -fPIC
|
||
|
GLUT_CFLAGS = -fexceptions
|
||
|
APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11 -lm
|
||
|
|