sdl

FORK: Simple Directmedia Layer
git clone https://git.neptards.moe/neptards/sdl.git
Log | Files | Refs

makefile (1168B)


      1 #############################################################################
      2 #
      3 #               Copyright (C) Microsoft Corporation 1995, 1996
      4 #       All Rights Reserved.
      5 #
      6 #       MAKEFILE for HID directory
      7 #
      8 #############################################################################
      9 
     10 !IFDEF WIN95_BUILD
     11 
     12 ROOT=..\..\..\..
     13 
     14 VERSIONLIST = debug retail
     15 IS_32 = TRUE
     16 IS_SDK = TRUE
     17 IS_PRIVATE = TRUE
     18 IS_SDK = TRUE
     19 IS_DDK = TRUE
     20 WIN32 = TRUE
     21 COMMONMKFILE = hidapi.mk
     22 
     23 !include $(ROOT)\dev\master.mk
     24 
     25 
     26 !ELSE
     27 
     28 #
     29 # DO NOT EDIT THIS FILE!!!  Edit .\sources. if you want to add a new source
     30 # file to this component.  This file merely indirects to the real make file
     31 # that is shared by all the driver components of the Windows NT DDK
     32 #
     33 
     34 !IF DEFINED(_NT_TARGET_VERSION)
     35 !	IF $(_NT_TARGET_VERSION)>=0x501
     36 !		INCLUDE $(NTMAKEENV)\makefile.def
     37 !	ELSE
     38 #               Only warn once per directory
     39 !               INCLUDE $(NTMAKEENV)\makefile.plt
     40 !               IF "$(BUILD_PASS)"=="PASS1"
     41 !		    message BUILDMSG: Warning : The sample "$(MAKEDIR)" is not valid for the current OS target.
     42 !               ENDIF
     43 !	ENDIF
     44 !ELSE
     45 !	INCLUDE $(NTMAKEENV)\makefile.def
     46 !ENDIF
     47 
     48 !ENDIF
     49