mirror of https://github.com/lianthony/NT4.0
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.
35 lines
626 B
35 lines
626 B
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
#
|
|
# 24-Feb-1994 DrewB
|
|
#
|
|
|
|
!IFDEF USEBUILD
|
|
|
|
# If using BUILD.EXE, edit .\sources. if you want to add a new source
|
|
# file to this component. This file merely indirects to the real make file
|
|
# that is shared by all the components of NT OS/2.
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.def
|
|
|
|
!ELSE
|
|
|
|
default: copy_bin
|
|
|
|
TARGET = base16.exe
|
|
CXXFILES = .\base16.cxx
|
|
QUICKWINDOWS = 1
|
|
LIBS = $(LIBS) \
|
|
..\..\compobj\$(OBJDIR)\compobj.lib\
|
|
..\..\storage\$(OBJDIR)\storage.lib
|
|
|
|
!include ..\..\makefile.inc
|
|
|
|
copy_bin: all
|
|
binplace $(OBJDIR)\base16.exe
|
|
|
|
base16.obj: base16.cxx
|
|
|
|
!ENDIF
|