代码搜索:msc 开发教程
找到约 10,000 项符合「msc 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/283069/4086942
msc makefile.msc
CC=cl
CFLAGS=-MD
untgz.exe: untgz.obj ..\..\zlib.lib
$(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib
untgz.obj: untgz.c ..\..\zlib.h
$(CC) $(CFLAGS) -c -I..\.. untgz.c
..\..\zlib.lib:
cd ..\..
$(MAKE)
www.eeworm.com/read/283069/4087007
msc makefile.msc
# Makefile for zlib
# Microsoft C 5.1 or later
# Last updated: 19-Mar-2003
# To use, do "make makefile.msc"
# To compile in small model, set below: MODEL=S
# If you wish to reduce the memory require
www.eeworm.com/read/281660/4113770
msc makefile.msc
CC=cl
CFLAGS=-MD
untgz.exe: untgz.obj ..\..\zlib.lib
$(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib
untgz.obj: untgz.c ..\..\zlib.h
$(CC) $(CFLAGS) -c -I..\.. untgz.c
..\..\zlib.lib:
cd ..\..
$(MAKE)
www.eeworm.com/read/279087/4139603
msc makefile.msc
# Makefile for zlib
# Microsoft C 5.1 or later
# To use, do "make makefile.msc"
# To compile in small model, set below: MODEL=S
# If you wish to reduce the memory requirements (default 256K for big
www.eeworm.com/read/273763/4192704
msc makefile.msc
# Makefile.msc -- Makefile for MS-VC++ (-*- makefile -*-)
#
# Copyright (C) 2003, 2004 Raymond Penners
#
# $Id: Makefile.msc,v 1.3 2004/05/21 19:02:59 cinamod Exp $
!INCLUDE .
www.eeworm.com/read/273763/4192722
msc makefile.msc
## Makefile for building the GDK DLL with Microsoft C
## Use: nmake -f makefile.msc
# Location of the Wintab toolkit. Downloadable from http://www.pointing.com.
WTKIT = ..\..\..\wtkit126
###########
www.eeworm.com/read/273763/4192854
msc make.msc
# Common makefile definitions for building GLib, GTk+, and various
# software that use these libraries with msvc on Win32
# For more detailed information see make.mingw in this same directory
# Debu
www.eeworm.com/read/273763/4192861
msc makefile.msc
TOP = ..\..\..\..
!INCLUDE $(TOP)\glib\build\win32\make.msc
dirent_OBJECTS = dirent.obj wdirent.obj
INCLUDES = -I.
all : dirent.lib
dirent.lib : $(dirent_OBJECTS)
lib /out:dirent.lib /nodefaultl
www.eeworm.com/read/273763/4193227
msc makefile.msc
TOP = ../../..
PACKAGE = pixops
PRJ_TOP = ..\..
!INCLUDE $(TOP)/glib/build/win32/make.msc
PKG_CFLAGS = -I.. $(GLIB_CFLAGS)
OBJECTS = \
pixops.obj \
#? timescale.obj
## common stuff
## compiler a
www.eeworm.com/read/273759/4193346
msc makefile.msc
!IFDEF DEBUG
CRT=-MDd
!ELSE
CRT=-MD
!ENDIF
CFLAGS = -I ..\.. -DHAVE_CONFIG_H -DHAVE_LONG_LONG_FORMAT
OBJECTS = \
asnprintf.obj \
printf.obj \
printf-args.obj \
printf-parse.obj \
vasnprintf.obj