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.
69 lines
1.2 KiB
69 lines
1.2 KiB
############################################################################
|
|
#
|
|
# Copyright (C) 1992, Microsoft Corporation.
|
|
#
|
|
# All rights reserved.
|
|
#
|
|
############################################################################
|
|
|
|
|
|
#
|
|
# Name of target. Include an extension (.dll, .lib, .exe)
|
|
# If the target is part of the release, set RELEASE to 1.
|
|
#
|
|
|
|
TARGET =rladmin.exe
|
|
RELEASE =1
|
|
|
|
|
|
#
|
|
# Source files. Remember to prefix each name with .\
|
|
#
|
|
CINC = -I..\common
|
|
CXXFILES =
|
|
CFILES = .\rladmin.c
|
|
RCFILES = .\rladmin.rc
|
|
|
|
|
|
#
|
|
# Libraries and other object files to link.
|
|
#
|
|
|
|
!if "$(OPSYS)" == "DOS"
|
|
|
|
LIBS =$(IMPORT)\win31\lib\commdlg.lib \
|
|
$(IMPORT)\win31\lib\shell.lib \
|
|
$(IMPORT)\win31\lib\oldnames.lib \
|
|
$(IMPORT)\C700\lib\llibcew.lib \
|
|
$(IMPORT)\win31\lib\toolhelp.lib \
|
|
\tools\rltools\win\rlcommon.lib
|
|
|
|
!else
|
|
|
|
LIBS =\tools\rltools\cairo\rlcommon.lib \
|
|
$(COMMON)\ilib\$(OBJDIR)\cairo.lib \
|
|
$(IMPORT)\nt\lib\$(OBJDIR)\shell32.lib \
|
|
$(IMPORT)\nt\lib\$(OBJDIR)\comdlg32.lib
|
|
|
|
!endif
|
|
|
|
OBJFILES =
|
|
|
|
!if "$(OPSYS)" == "DOS"
|
|
|
|
EXECOPY =\tools\rltools\WIN
|
|
|
|
!else
|
|
|
|
EXECOPY =\tools\rltools\cairo
|
|
|
|
!endif
|
|
|
|
|
|
|
|
#
|
|
# Precompiled headers.
|
|
#
|
|
|
|
PXXFILE =
|
|
PFILE =
|