mirror of
				https://github.com/Perlmint/glew-cmake.git
				synced 2025-10-30 20:22:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			442 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			442 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| MSDEV := msdev
 | |
| RM := rm -rf
 | |
| 
 | |
| default:
 | |
| 	$(MSDEV) glew.dsw /make \
 | |
| 	"glew_static - Win32 Release" \
 | |
| 	"glew_shared - Win32 Release" \
 | |
| 	"glewinfo - Win32 Release" \
 | |
| 	"visualinfo - Win32 Release" /build
 | |
| 
 | |
| debug:
 | |
| 	$(MSDEV) glew.dsw /make \
 | |
| 	"glew_static - Win32 Debug" \
 | |
| 	"glew_shared - Win32 Debug" \
 | |
| 	"glewinfo - Win32 Debug" \
 | |
| 	"visualinfo - Win32 Debug" /build
 | |
| 
 | |
| 
 | |
| clean:
 | |
| 	$(MSDEV) glew.dsw /make all /clean
 | |
| 	$(RM) static shared *.plg *.ncb *.opt
 |