⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 detect.mk

📁 qt-embedded-2.3.8.tar.gz源码
💻 MK
字号:
## FreeType 2 configuration file to detect a Win32 host platform.## Copyright 1996-2000 by# David Turner, Robert Wilhelm, and Werner Lemberg.## This file is part of the FreeType project, and may only be used, modified,# and distributed under the terms of the FreeType project license,# LICENSE.TXT.  By continuing to use, modify, or distribute this file you# indicate that you have read the license and understand and accept it# fully.ifeq ($(PLATFORM),ansi)  # Detecting Windows NT is easy, as the OS variable must be defined and  # contains `Windows_NT'.  Untested with Windows 2K, but I guess it should  # work...  #  ifeq ($(OS),Windows_NT)    # Check if we are running on a CygWin system by checking the OSTYPE    # variable.    ifneq ($(OSTYPE),cygwin)      is_windows := 1    endif    # We test for the COMSPEC environment variable, then run the `ver'    # command-line program to see if its output contains the word `Windows'.    #    # If this is true, we are running a win32 platform (or an emulation).    #  else    ifneq ($(OSTYPE),cygwin)      ifdef COMSPEC        is_windows := $(findstring Windows,$(strip $(shell ver)))      endif    endif  # test CygWin  endif  # test NT  ifdef is_windows    PLATFORM := win32    DELETE   := del    COPY     := copy    CONFIG_FILE := w32-gcc.mk  # gcc Makefile by default    SEP         := /    ifeq ($(firstword $(CC)),cc)      CC        := gcc    endif    # additionally, we provide hooks for various other compilers    #    ifneq ($(findstring visualc,$(MAKECMDGOALS)),)     # Visual C/C++      CONFIG_FILE := w32-vcc.mk      SEP         := $(BACKSLASH)      CC          := cl      visualc: setup    endif    ifneq ($(findstring watcom,$(MAKECMDGOALS)),)      # Watcom C/C++      CONFIG_FILE := w32-wat.mk      SEP         := $(BACKSLASH)      CC          := wcc386      watcom: setup    endif    ifneq ($(findstring visualage,$(MAKECMDGOALS)),)   # Visual Age C++      CONFIG_FILE := w32-icc.mk      SEP         := $(BACKSLASH)      CC          := icc      visualage: setup    endif    ifneq ($(findstring lcc,$(MAKECMDGOALS)),)         # LCC-Win32      CONFIG_FILE := w32-lcc.mk      SEP         := $(BACKSLASH)      CC          := lcc      lcc: setup    endif    ifneq ($(findstring mingw32,$(MAKECMDGOALS)),)     # mingw32      CONFIG_FILE := w32-mingw32.mk      SEP         := $(BACKSLASH)      CC          := gcc      mingw32: setup    endif    ifneq ($(findstring bcc32,$(MAKECMDGOALS)),)       # Borland C++      CONFIG_FILE := w32-bcc.mk      SEP         := $(BACKSLASH)      CC          := bcc32      bcc32: setup    endif    ifneq ($(findstring devel,$(MAKECMDGOALS)),)       # development target      CONFIG_FILE := w32-dev.mk      CC          := gcc      SEP         := /      devel: setup    endif    setup: dos_setup  endif # test is_windowsendif   # test PLATFORM# EOF

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -