How do I link with GLU?
问题 I've just discovered FLTK and I made a makefile for my test. Here is my makefile: ################ template makefile ############## # We don't know what compiler to use to build fltk on this machine - but fltk-config does... CC = $(shell fltk-config --cc) CXX = $(shell fltk-config --cxx) # Set the flags for compiler: fltk-config knows the basic settings, then we can add our own... CFLAGS = $(shell fltk-config --cflags) CXXFLAGS = $(shell fltk-config --cxxflags) -I/System/Library/Frameworks