mirror of
				https://github.com/nigels-com/glew.git
				synced 2025-10-30 20:22:25 +00:00 
			
		
		
		
	the canonical system name and include the corresponding Makefile snippet from config/. config.guess has been written with portability in mind, so it should work properly on all supported systems. Should its licence (GPL) become a problem, it can be replaced with a simpler script that supports only the systems we know something about. Adding support for a new system is just a matter of running config/config.guess and writing the matching config/Makefile.$system file. git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@315 783a27ee-832a-0410-bc00-9f386506c6dd
		
			
				
	
	
		
			21 lines
		
	
	
		
			508 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			508 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| NAME = GLEW
 | |
| CC = cc
 | |
| LD = ld
 | |
| ifneq (undefined, $(origin GLEW_MX))
 | |
| CFLAGS.EXTRA = -DGLEW_MX
 | |
| endif
 | |
| LDFLAGS.SO = -shared -soname $(LIB.SONAME)
 | |
| LDFLAGS.EXTRA = -L/usr/X11R6/lib
 | |
| LDFLAGS.GL = -lXmu -lXi -lGLU -lGL -lXext -lX11
 | |
| LDFLAGS.STATIC = -Wl,-Bstatic
 | |
| LDFLAGS.DYNAMIC = -Wl,-Bdynamic
 | |
| CFLAGS.EXTRA += -I/usr/X11R6/include
 | |
| NAME = GLEW
 | |
| WARN = -Wall -W
 | |
| POPT = -O2
 | |
| BIN.SUFFIX =
 | |
| LIB.SONAME = lib$(NAME).so.$(GLEW_MAJOR)
 | |
| LIB.DEVLNK = lib$(NAME).so
 | |
| LIB.SHARED = lib$(NAME).so.$(GLEW_VERSION)
 | |
| LIB.STATIC = lib$(NAME).a
 |