Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

netbsd 440B

1234567891011121314151617
  1. # Configuration for NetBSD
  2. include $(TOP)/configs/default
  3. CONFIG_NAME = netbsd
  4. # Compiler and flags
  5. CC = gcc
  6. CXX = g++
  7. CFLAGS = -O2 -fPIC -DUSE_XSHM -I/usr/X11R6/include -DHZ=100
  8. CXXFLAGS = -O2 -fPIC
  9. GLUT_CFLAGS = -fexceptions
  10. APP_LIB_DEPS = -L$(TOP)/$(LIB_DIR) -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11 -lm
  11. # Work around aliasing bugs - developers should comment this out
  12. CFLAGS += -fno-strict-aliasing
  13. CXXFLAGS += -fno-strict-aliasing