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.
22 lines
442 B
22 lines
442 B
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
|