Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
PostMake.Inc
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 3k
Category:
Game Server Simulator
Development Platform:
C/C++
- #----------------------------------------------------------------------------
- #
- # Descriptions:
- # Generic Make File Postfix for EDK Environment
- #
- # Copyright:
- # Copyright (C) Microsoft Corp. 1993-1999. All Rights Reserved.
- #
- #----------------------------------------------------------------------------
- !ifndef PRIVATE_CLEAN
- clean:
- !else
- generic_clean:
- !endif
- del $(DIRBLD)*.obj
- $(DIRBLD)*.err
- $(DIRBLD)*.lib
- $(DIRBLD)*.exe
- $(DIRBLD)*.dll
- $(DIRBLD)*.map
- $(DIRBLD)*.res
- $(DIRBLD)*.pch
- $(DIRBLD)*.exp
- cleanall: clean
- del $(DIRPCH)*.obj
- $(DIRPCH)*.pch
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- # Disable precompiled headers if NOPCH is defined.
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- !ifdef NOPCH
- !include "nopch.inc"
- !endif
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- # Pre-compiled header default #1 used in most .C EDK sources.
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- $(DIRPCH)edk.obj: $(DIRPCHSRC)edk.c
- !if "$(OUTERR)"=="YES"
- @echo $(CC) $(CL) $(PCHCR1) $(CFLAGS) $(DIRPCHSRC)edk.c $(OSYM) $(ERRFILE)
- !endif
- $(CC) $(CL) $(PCHCR1) $(CFLAGS) $(DIRPCHSRC)edk.c $(OSYM) $(ERRFILE)
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- # Pre-compiled header default #2 used in most .CPP EDK sources.
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- $(DIRPCH)edkx.obj: $(DIRPCHSRC)edkx.cpp
- !if "$(OUTERR)"=="YES"
- @echo $(CC) $(CL) $(PCHCR2) $(CFLAGS) $(DIRPCHSRC)edkx.cpp $(OSYM) $(ERRFILE)
- !endif
- $(CC) $(CL) $(PCHCR2) $(CFLAGS) $(DIRPCHSRC)edkx.cpp $(OSYM) $(ERRFILE)
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- # Pre-compiled header default #3 used for .CPP and MFC applications.
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- $(DIRPCH)edkafx.obj: $(DIRPCHSRC)edkafx.cpp
- !if "$(OUTERR)"=="YES"
- @echo $(CC) $(CL) $(PCHCR3) $(CPPFLAGS) $(DIRPCHSRC)edkafx.cpp $(OSYM) $(ERRFILE)
- !endif
- $(CC) $(CL) $(PCHCR3) $(CPPFLAGS) $(DIRPCHSRC)edkafx.cpp $(OSYM) $(ERRFILE)
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- # Pre-compiled header default #4 used in UNICODE .C EDK sources.
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- $(DIRPCH)edku.obj: $(DIRPCHSRC)edku.c
- !if "$(OUTERR)"=="YES"
- @echo $(CC) $(CL) $(PCHCR4) $(CFLAGS) $(DIRPCHSRC)edku.c $(OSYM) $(ERRFILE)
- !endif
- $(CC) $(CL) $(PCHCR4) $(CFLAGS) $(DIRPCHSRC)edku.c $(OSYM) $(ERRFILE)
- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -