summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/usr.bin/cvs/BUGS19
-rw-r--r--gnu/usr.bin/cvs/ChangeLog22
-rw-r--r--gnu/usr.bin/cvs/FAQ7
-rw-r--r--gnu/usr.bin/cvs/TODO37
-rw-r--r--gnu/usr.bin/cvs/cvs-format.el8
-rw-r--r--gnu/usr.bin/cvs/cvsnt.mak2202
6 files changed, 76 insertions, 2219 deletions
diff --git a/gnu/usr.bin/cvs/BUGS b/gnu/usr.bin/cvs/BUGS
index 3c4a0d612ef..75841da80f9 100644
--- a/gnu/usr.bin/cvs/BUGS
+++ b/gnu/usr.bin/cvs/BUGS
@@ -15,15 +15,16 @@ similar file for the unix-like operating systems (not yet, at least).
This file also might contain some platform-specific bugs.
-* Importing files as binary (using wrappers to specify that--like
-binwrap-1 in the testsuite) will not work on systems which need to
-translate between text and binary files (that is, it will work only on
-unix). (for the cause, look at send_modified and note that it knows
-nothing about whether wrappers specified binary-ness). The file will
-be marked as binary, but the contents will be incorrect. The
-workaround is (a) import the binary files (but not text files, unless
-they have been converted to unix text files) on unix, or (b) check in
-the correct contents for the binary files after the import is done.
+* Importing files as binary (using -kb or wrappers to specify
+binaryness; see binwrap-1 in the testsuite for the latter) will not
+work on systems which need to translate between text and binary files
+(that is, it will work only on unix). (for the cause, look at
+send_modified and note that it knows nothing about whether wrappers
+specified binary-ness). The file will be marked as binary, but the
+contents will be incorrect. The workaround is (a) import the binary
+files (but not text files, unless they have been converted to unix
+text files) on unix, or (b) check in the correct contents for the
+binary files after the import is done.
* Some people have reported seeing the message "dying gasps from %s
diff --git a/gnu/usr.bin/cvs/ChangeLog b/gnu/usr.bin/cvs/ChangeLog
index 263d0782b82..23c5a3d37f6 100644
--- a/gnu/usr.bin/cvs/ChangeLog
+++ b/gnu/usr.bin/cvs/ChangeLog
@@ -1,3 +1,25 @@
+Thu Apr 17 14:28:20 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
+
+ * TODO: Combine items 150 and 181 since they are basically the same.
+
+Tue Apr 15 12:32:26 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
+
+ * FAQ: The URL of yahoo's Configuration Management category has
+ changed. As it might change again, just cite their top-level page
+ rather than the entire URL.
+
+8 Apr 1997 Jim Kingdon
+
+ * cvsnt.mak: Add windows-NT/sockerror.c.
+
+Wed Mar 26 15:51:33 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
+
+ * BUGS: Further note on import -kb bug.
+
+Tue Mar 25 17:51:32 1997 Jim Kingdon <kingdon@harvey.cyclic.com>
+
+ * cvs-format.el: Add comment concerning c-label-offset.
+
Wed Mar 19 14:06:40 1997 Jim Meyering <meyering@totoro.cyclic.com>
* configure.in (test for shadow passwords): Use AC_MSG_RESULT
diff --git a/gnu/usr.bin/cvs/FAQ b/gnu/usr.bin/cvs/FAQ
index 450fa32f57d..c7fcdd78bec 100644
--- a/gnu/usr.bin/cvs/FAQ
+++ b/gnu/usr.bin/cvs/FAQ
@@ -7,8 +7,5 @@ questions like "what is the latest version of CVS?" and "what about GUIs
for CVS?", see the CVS web site,
http://www.loria.fr/~molli/cvs-index.html. There are many web sites on
Configuration Management packages (of which CVS is an example); for
-example see
-
-http://www.yahoo.com/Computers_and_Internet/Software/Software_Engineering/Configuration_Management/index.html
-
-or http://www.iac.honeywell.com/Pub/Tech/CM/index.html.
+example see the "Configuration Management" category at http://www.yahoo.com/
+or see http://www.iac.honeywell.com/Pub/Tech/CM/index.html.
diff --git a/gnu/usr.bin/cvs/TODO b/gnu/usr.bin/cvs/TODO
index 8a1fd93cc53..179a1804971 100644
--- a/gnu/usr.bin/cvs/TODO
+++ b/gnu/usr.bin/cvs/TODO
@@ -245,17 +245,30 @@
A new command seems appropriate for this. The state can be saved in the
CVS directory. I.e.,
-
- % cvs msg foo.c
+
+ % cvs message foo.c
Enter log message for foo.c
>> fixed an uninitialized variable
>> ^D
- The text is saved as CVS/foo.c,m (or some such name) and commit is
- modified to append (prepend?) the text (if found) to the log message
- specified at commit time. Easy enough. (having cvs commit be
- non-interactive takes care of various issues like whether to connect
- to the server before or after prompting for a message -kingdon, June 1996)
+ The text is saved as CVS/foo.c,m (or some such name) and commit
+ is modified to append (prepend?) the text (if found) to the log
+ message specified at commit time. Easy enough. (having cvs
+ commit be non-interactive takes care of various issues like
+ whether to connect to the server before or after prompting for a
+ message (see comment in commit.c at call to start_server)
+ -kingdon, June 1996)
+
+ I'm not sure about the part above about having commit prompt
+ for an overall message--part of the point is having commit
+ non-interactive and somehow combining messages seems like (excess?)
+ hair.
+
+ Would be nice to do this so it allows users more flexibility in
+ specifying messages per-directory ("cvs message -l") or per-tree
+ ("cvs message") or per-file ("cvs message foo.c"), and fixes the
+ incompatibility between client/server (per-tree) and
+ non-client/server (per-directory).
151. Also, is there a flag I am missing that allows replacing Ulrtx_Build
by Ultrix_build? I.E. I would like a tag replacement to be a one step
@@ -371,16 +384,6 @@
similar result). (But watch out for what happens if the network
is down!).
-181. Make a "cvs message" command which prompts for a log message and
- stores it in the CVS directory. Then "cvs ci" would use it.
- This solves the problem with where in the client to prompt for
- the log message (see comment in commit.c at call to
- start_server), allows users more flexibility in specifying
- messages per-directory ("cvs message -l") or per-tree ("cvs
- message") or per-file ("cvs message foo.c"), and fixes the
- incompatibility between client/server (per-tree) and
- non-client/server (per-directory).
-
182. There should be a way to show log entries corresponding to
changes from tag "foo" to tag "bar". "cvs log -rfoo -rbar" doesn't
cut it, because it is inclusive on the bar end. I'm not sure that is
diff --git a/gnu/usr.bin/cvs/cvs-format.el b/gnu/usr.bin/cvs/cvs-format.el
index 1ecbce2d850..06dcc62fdd4 100644
--- a/gnu/usr.bin/cvs/cvs-format.el
+++ b/gnu/usr.bin/cvs/cvs-format.el
@@ -81,7 +81,13 @@
;;`c-label-offset'
;; Extra indentation for line that is a label, or case or default.
-
+;; This doesn't quite do the right thing for CVS switches, which use the
+;; switch (foo)
+;; {
+;; case 0:
+;; break;
+;; style. But if one manually aligns the first case, then the rest
+;; should work OK.
(setq c-label-offset -4)
;;;; eof
diff --git a/gnu/usr.bin/cvs/cvsnt.mak b/gnu/usr.bin/cvs/cvsnt.mak
index c3de608ee1c..31f5a7d6daf 100644
--- a/gnu/usr.bin/cvs/cvsnt.mak
+++ b/gnu/usr.bin/cvs/cvsnt.mak
@@ -31,8 +31,8 @@ NULL=nul
################################################################################
# Begin Project
# PROP Target_Last_Scanned "cvsnt - Win32 Debug"
-CPP=cl.exe
RSC=rc.exe
+CPP=cl.exe
!IF "$(CFG)" == "cvsnt - Win32 Release"
@@ -97,6 +97,7 @@ CLEAN :
-@erase ".\WinRel\diff.obj"
-@erase ".\WinRel\mkdir.obj"
-@erase ".\WinRel\trees.obj"
+ -@erase ".\WinRel\sockerror.obj"
-@erase ".\WinRel\recurse.obj"
-@erase ".\WinRel\import.obj"
-@erase ".\WinRel\rtag.obj"
@@ -214,6 +215,7 @@ LINK32_OBJS= \
"$(INTDIR)/diff.obj" \
"$(INTDIR)/mkdir.obj" \
"$(INTDIR)/trees.obj" \
+ "$(INTDIR)/sockerror.obj" \
"$(INTDIR)/recurse.obj" \
"$(INTDIR)/import.obj" \
"$(INTDIR)/rtag.obj" \
@@ -285,6 +287,7 @@ CLEAN :
-@erase ".\WinDebug\cvs.exe"
-@erase ".\WinDebug\add.obj"
-@erase ".\WinDebug\savecwd.obj"
+ -@erase ".\WinDebug\sockerror.obj"
-@erase ".\WinDebug\infcodes.obj"
-@erase ".\WinDebug\valloc.obj"
-@erase ".\WinDebug\server.obj"
@@ -404,6 +407,7 @@ LINK32_FLAGS=wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib\
LINK32_OBJS= \
"$(INTDIR)/add.obj" \
"$(INTDIR)/savecwd.obj" \
+ "$(INTDIR)/sockerror.obj" \
"$(INTDIR)/infcodes.obj" \
"$(INTDIR)/valloc.obj" \
"$(INTDIR)/server.obj" \
@@ -534,64 +538,21 @@ LINK32_OBJS= \
# Begin Source File
SOURCE=.\src\mkmodules.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_MKMOD=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
- ".\lib\getline.h"\
-
-
-"$(INTDIR)\mkmodules.obj" : $(SOURCE) $(DEP_CPP_MKMOD) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_MKMOD=\
".\src\cvs.h"\
".\lib\savecwd.h"\
".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_MKMOD=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\mkmodules.obj" : $(SOURCE) $(DEP_CPP_MKMOD) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\subr.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_SUBR_=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -601,50 +562,11 @@ DEP_CPP_SUBR_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_SUBR_=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_SUBR_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\subr.obj" : $(SOURCE) $(DEP_CPP_SUBR_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\admin.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_ADMIN=\
".\src\cvs.h"\
@@ -653,49 +575,11 @@ DEP_CPP_ADMIN=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_ADMIN=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_ADMIN=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\admin.obj" : $(SOURCE) $(DEP_CPP_ADMIN) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\server.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_SERVE=\
".\src\cvs.h"\
".\src\watch.h"\
@@ -710,54 +594,11 @@ DEP_CPP_SERVE=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_SERVE=\
- ".\src\cvs.h"\
- ".\src\watch.h"\
- ".\src\edit.h"\
- ".\src\fileattr.h"\
- ".\lib\getline.h"\
- ".\src\buffer.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_SERVE=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\server.obj" : $(SOURCE) $(DEP_CPP_SERVE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\diff.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_DIFF_=\
".\src\cvs.h"\
@@ -766,64 +607,11 @@ DEP_CPP_DIFF_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_DIFF_=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_DIFF_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\diff.obj" : $(SOURCE) $(DEP_CPP_DIFF_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\client.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_CLIEN=\
- ".\windows-NT\config.h"\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\src\edit.h"\
- ".\src\buffer.h"\
- ".\lib\md5.h"\
-
-
-"$(INTDIR)\client.obj" : $(SOURCE) $(DEP_CPP_CLIEN) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_CLIEN=\
".\windows-NT\config.h"\
".\src\cvs.h"\
@@ -831,44 +619,17 @@ DEP_CPP_CLIEN=\
".\src\edit.h"\
".\src\buffer.h"\
".\lib\md5.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_CLIEN=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\client.obj" : $(SOURCE) $(DEP_CPP_CLIEN) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\checkout.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_CHECK=\
".\src\cvs.h"\
@@ -877,49 +638,11 @@ DEP_CPP_CHECK=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_CHECK=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_CHECK=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\checkout.obj" : $(SOURCE) $(DEP_CPP_CHECK) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\no_diff.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_NO_DI=\
".\src\cvs.h"\
@@ -928,49 +651,11 @@ DEP_CPP_NO_DI=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_NO_DI=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_NO_DI=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\no_diff.obj" : $(SOURCE) $(DEP_CPP_NO_DI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\entries.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_ENTRI=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -980,50 +665,11 @@ DEP_CPP_ENTRI=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_ENTRI=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_ENTRI=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\entries.obj" : $(SOURCE) $(DEP_CPP_ENTRI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\tag.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_TAG_C=\
".\src\cvs.h"\
".\lib\savecwd.h"\
@@ -1033,101 +679,24 @@ DEP_CPP_TAG_C=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_TAG_C=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_TAG_C=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\tag.obj" : $(SOURCE) $(DEP_CPP_TAG_C) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\rtag.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_RTAG_=\
- ".\src\cvs.h"\
-
-
-"$(INTDIR)\rtag.obj" : $(SOURCE) $(DEP_CPP_RTAG_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_RTAG_=\
".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_RTAG_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\rtag.obj" : $(SOURCE) $(DEP_CPP_RTAG_) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\status.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_STATU=\
".\src\cvs.h"\
@@ -1136,102 +705,25 @@ DEP_CPP_STATU=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_STATU=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_STATU=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\status.obj" : $(SOURCE) $(DEP_CPP_STATU) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\root.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_ROOT_=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
-
-
-"$(INTDIR)\root.obj" : $(SOURCE) $(DEP_CPP_ROOT_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_ROOT_=\
".\src\cvs.h"\
".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_ROOT_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\root.obj" : $(SOURCE) $(DEP_CPP_ROOT_) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\myndbm.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_MYNDB=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -1241,101 +733,24 @@ DEP_CPP_MYNDB=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_MYNDB=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_MYNDB=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\myndbm.obj" : $(SOURCE) $(DEP_CPP_MYNDB) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\hash.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_HASH_=\
- ".\src\cvs.h"\
-
-
-"$(INTDIR)\hash.obj" : $(SOURCE) $(DEP_CPP_HASH_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_HASH_=\
".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_HASH_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\hash.obj" : $(SOURCE) $(DEP_CPP_HASH_) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\repos.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_REPOS=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -1345,50 +760,11 @@ DEP_CPP_REPOS=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_REPOS=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_REPOS=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\repos.obj" : $(SOURCE) $(DEP_CPP_REPOS) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\parseinfo.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_PARSE=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -1398,50 +774,11 @@ DEP_CPP_PARSE=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_PARSE=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_PARSE=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\parseinfo.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\vers_ts.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_VERS_=\
".\src\cvs.h"\
@@ -1450,49 +787,11 @@ DEP_CPP_VERS_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_VERS_=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_VERS_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\vers_ts.obj" : $(SOURCE) $(DEP_CPP_VERS_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\checkin.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_CHECKI=\
".\src\cvs.h"\
".\src\fileattr.h"\
@@ -1503,108 +802,27 @@ DEP_CPP_CHECKI=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_CHECKI=\
- ".\src\cvs.h"\
- ".\src\fileattr.h"\
- ".\src\edit.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_CHECKI=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\checkin.obj" : $(SOURCE) $(DEP_CPP_CHECKI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\commit.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_COMMI=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\src\edit.h"\
- ".\src\fileattr.h"\
-
-
-"$(INTDIR)\commit.obj" : $(SOURCE) $(DEP_CPP_COMMI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_COMMI=\
".\src\cvs.h"\
".\lib\getline.h"\
".\src\edit.h"\
".\src\fileattr.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_COMMI=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\commit.obj" : $(SOURCE) $(DEP_CPP_COMMI) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\version.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_VERSI=\
".\src\cvs.h"\
@@ -1613,102 +831,25 @@ DEP_CPP_VERSI=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_VERSI=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_VERSI=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\version.obj" : $(SOURCE) $(DEP_CPP_VERSI) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\cvsrc.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_CVSRC=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
-
-
-"$(INTDIR)\cvsrc.obj" : $(SOURCE) $(DEP_CPP_CVSRC) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_CVSRC=\
".\src\cvs.h"\
".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_CVSRC=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\cvsrc.obj" : $(SOURCE) $(DEP_CPP_CVSRC) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\remove.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_REMOV=\
".\src\cvs.h"\
@@ -1717,49 +858,11 @@ DEP_CPP_REMOV=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_REMOV=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_REMOV=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\remove.obj" : $(SOURCE) $(DEP_CPP_REMOV) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\update.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_UPDAT=\
".\src\cvs.h"\
".\lib\savecwd.h"\
@@ -1774,108 +877,25 @@ DEP_CPP_UPDAT=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_UPDAT=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
- ".\lib\md5.h"\
- ".\src\watch.h"\
- ".\src\fileattr.h"\
- ".\src\edit.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_UPDAT=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\update.obj" : $(SOURCE) $(DEP_CPP_UPDAT) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\logmsg.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_LOGMS=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
-
-
-"$(INTDIR)\logmsg.obj" : $(SOURCE) $(DEP_CPP_LOGMS) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_LOGMS=\
".\src\cvs.h"\
".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_LOGMS=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\logmsg.obj" : $(SOURCE) $(DEP_CPP_LOGMS) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\classify.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_CLASS=\
".\src\cvs.h"\
@@ -1884,102 +904,25 @@ DEP_CPP_CLASS=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_CLASS=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_CLASS=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\classify.obj" : $(SOURCE) $(DEP_CPP_CLASS) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\history.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_HISTO=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
-
-
-"$(INTDIR)\history.obj" : $(SOURCE) $(DEP_CPP_HISTO) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_HISTO=\
".\src\cvs.h"\
".\lib\savecwd.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_HISTO=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\history.obj" : $(SOURCE) $(DEP_CPP_HISTO) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\add.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_ADD_C=\
".\src\cvs.h"\
".\lib\savecwd.h"\
@@ -1989,101 +932,24 @@ DEP_CPP_ADD_C=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_ADD_C=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_ADD_C=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\add.obj" : $(SOURCE) $(DEP_CPP_ADD_C) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\lock.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_LOCK_=\
- ".\src\cvs.h"\
-
-
-"$(INTDIR)\lock.obj" : $(SOURCE) $(DEP_CPP_LOCK_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_LOCK_=\
".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_LOCK_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\lock.obj" : $(SOURCE) $(DEP_CPP_LOCK_) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\recurse.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_RECUR=\
".\src\cvs.h"\
".\lib\savecwd.h"\
@@ -2095,52 +961,11 @@ DEP_CPP_RECUR=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_RECUR=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
- ".\src\fileattr.h"\
- ".\src\edit.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_RECUR=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\recurse.obj" : $(SOURCE) $(DEP_CPP_RECUR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\modules.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_MODUL=\
".\src\cvs.h"\
".\lib\savecwd.h"\
@@ -2150,50 +975,11 @@ DEP_CPP_MODUL=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_MODUL=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_MODUL=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\modules.obj" : $(SOURCE) $(DEP_CPP_MODUL) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\find_names.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_FIND_=\
".\src\cvs.h"\
@@ -2202,49 +988,11 @@ DEP_CPP_FIND_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_FIND_=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_FIND_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\find_names.obj" : $(SOURCE) $(DEP_CPP_FIND_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\rcs.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_RCS_C=\
".\src\cvs.h"\
@@ -2253,100 +1001,24 @@ DEP_CPP_RCS_C=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_RCS_C=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_RCS_C=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\rcs.obj" : $(SOURCE) $(DEP_CPP_RCS_C) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\create_adm.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_CREAT=\
- ".\src\cvs.h"\
-
-
-"$(INTDIR)\create_adm.obj" : $(SOURCE) $(DEP_CPP_CREAT) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_CREAT=\
".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_CREAT=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\create_adm.obj" : $(SOURCE) $(DEP_CPP_CREAT) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\main.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_MAIN_=\
".\src\cvs.h"\
@@ -2355,49 +1027,11 @@ DEP_CPP_MAIN_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_MAIN_=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_MAIN_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\main.obj" : $(SOURCE) $(DEP_CPP_MAIN_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\patch.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_PATCH=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -2407,103 +1041,25 @@ DEP_CPP_PATCH=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_PATCH=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_PATCH=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\patch.obj" : $(SOURCE) $(DEP_CPP_PATCH) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\release.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_RELEA=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
-
-
-"$(INTDIR)\release.obj" : $(SOURCE) $(DEP_CPP_RELEA) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_RELEA=\
".\src\cvs.h"\
".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_RELEA=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\release.obj" : $(SOURCE) $(DEP_CPP_RELEA) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\rcscmds.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_RCSCM=\
".\src\cvs.h"\
@@ -2512,49 +1068,11 @@ DEP_CPP_RCSCM=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_RCSCM=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_RCSCM=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\rcscmds.obj" : $(SOURCE) $(DEP_CPP_RCSCM) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\import.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_IMPOR=\
".\src\cvs.h"\
".\lib\savecwd.h"\
@@ -2564,50 +1082,11 @@ DEP_CPP_IMPOR=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_IMPOR=\
- ".\src\cvs.h"\
- ".\lib\savecwd.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_IMPOR=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\import.obj" : $(SOURCE) $(DEP_CPP_IMPOR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\ignore.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_IGNOR=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -2617,101 +1096,24 @@ DEP_CPP_IGNOR=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_IGNOR=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_IGNOR=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\ignore.obj" : $(SOURCE) $(DEP_CPP_IGNOR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\log.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_LOG_C=\
- ".\src\cvs.h"\
-
-
-"$(INTDIR)\log.obj" : $(SOURCE) $(DEP_CPP_LOG_C) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_LOG_C=\
".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_LOG_C=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\log.obj" : $(SOURCE) $(DEP_CPP_LOG_C) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\wrapper.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_WRAPP=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -2721,153 +1123,38 @@ DEP_CPP_WRAPP=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_WRAPP=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_WRAPP=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\wrapper.obj" : $(SOURCE) $(DEP_CPP_WRAPP) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\error.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_ERROR=\
- ".\src\cvs.h"\
-
-
-"$(INTDIR)\error.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_ERROR=\
".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_ERROR=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\error.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\expand_path.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_EXPAN=\
- ".\src\cvs.h"\
- {$(INCLUDE)}"\sys\Types.h"\
-
-
-"$(INTDIR)\expand_path.obj" : $(SOURCE) $(DEP_CPP_EXPAN) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_EXPAN=\
".\src\cvs.h"\
{$(INCLUDE)}"\sys\Types.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_EXPAN=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\expand_path.obj" : $(SOURCE) $(DEP_CPP_EXPAN) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\edit.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_EDIT_=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -2880,53 +1167,11 @@ DEP_CPP_EDIT_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_EDIT_=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\src\watch.h"\
- ".\src\edit.h"\
- ".\src\fileattr.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_EDIT_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\edit.obj" : $(SOURCE) $(DEP_CPP_EDIT_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\fileattr.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_FILEA=\
".\src\cvs.h"\
".\lib\getline.h"\
@@ -2937,51 +1182,11 @@ DEP_CPP_FILEA=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_FILEA=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
- ".\src\fileattr.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_FILEA=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\fileattr.obj" : $(SOURCE) $(DEP_CPP_FILEA) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\watch.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_WATCH=\
".\src\cvs.h"\
".\src\edit.h"\
@@ -2993,105 +1198,25 @@ DEP_CPP_WATCH=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_WATCH=\
- ".\src\cvs.h"\
- ".\src\edit.h"\
- ".\src\fileattr.h"\
- ".\src\watch.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_WATCH=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\watch.obj" : $(SOURCE) $(DEP_CPP_WATCH) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\login.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
-DEP_CPP_LOGIN=\
- ".\src\cvs.h"\
- ".\lib\getline.h"\
-
-
-"$(INTDIR)\login.obj" : $(SOURCE) $(DEP_CPP_LOGIN) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
DEP_CPP_LOGIN=\
".\src\cvs.h"\
".\lib\getline.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_LOGIN=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
"$(INTDIR)\login.obj" : $(SOURCE) $(DEP_CPP_LOGIN) "$(INTDIR)"
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\scramble.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_SCRAM=\
".\src\cvs.h"\
@@ -3100,49 +1225,11 @@ DEP_CPP_SCRAM=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_SCRAM=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_SCRAM=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\scramble.obj" : $(SOURCE) $(DEP_CPP_SCRAM) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\buffer.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_BUFFE=\
".\src\cvs.h"\
".\src\buffer.h"\
@@ -3152,50 +1239,11 @@ DEP_CPP_BUFFE=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_BUFFE=\
- ".\src\cvs.h"\
- ".\src\buffer.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_BUFFE=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\buffer.obj" : $(SOURCE) $(DEP_CPP_BUFFE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=.\src\zlib.c
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_ZLIB_=\
".\src\cvs.h"\
".\src\buffer.h"\
@@ -3207,44 +1255,6 @@ DEP_CPP_ZLIB_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_ZLIB_=\
- ".\src\cvs.h"\
- ".\src\buffer.h"\
- ".\zlib\zlib.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
- ".\zlib\zconf.h"\
-
-NODEP_CPP_ZLIB_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\zlib.obj" : $(SOURCE) $(DEP_CPP_ZLIB_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -3509,9 +1519,6 @@ DEP_CPP_VASPR=\
# Begin Source File
SOURCE=".\windows-NT\mkdir.c"
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_MKDIR=\
".\src\cvs.h"\
@@ -3520,49 +1527,11 @@ DEP_CPP_MKDIR=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_MKDIR=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_MKDIR=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\mkdir.obj" : $(SOURCE) $(DEP_CPP_MKDIR) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=".\windows-NT\run.c"
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_RUN_C=\
".\src\cvs.h"\
@@ -3571,41 +1540,6 @@ DEP_CPP_RUN_C=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_RUN_C=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_RUN_C=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\run.obj" : $(SOURCE) $(DEP_CPP_RUN_C) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -3624,9 +1558,6 @@ DEP_CPP_PWD_C=\
# Begin Source File
SOURCE=".\windows-NT\filesubr.c"
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_FILES=\
".\src\cvs.h"\
@@ -3635,41 +1566,6 @@ DEP_CPP_FILES=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_FILES=\
- ".\src\cvs.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_FILES=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\filesubr.obj" : $(SOURCE) $(DEP_CPP_FILES) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -3726,9 +1622,6 @@ SOURCE=".\windows-NT\stripslash.c"
# Begin Source File
SOURCE=".\windows-NT\rcmd.c"
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_RCMD_=\
".\src\cvs.h"\
".\windows-NT\rcmd.h"\
@@ -3738,50 +1631,11 @@ DEP_CPP_RCMD_=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_RCMD_=\
- ".\src\cvs.h"\
- ".\windows-NT\rcmd.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_RCMD_=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\rcmd.obj" : $(SOURCE) $(DEP_CPP_RCMD_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
SOURCE=".\windows-NT\startserver.c"
-
-!IF "$(CFG)" == "cvsnt - Win32 Release"
-
DEP_CPP_START=\
".\src\cvs.h"\
".\windows-NT\rcmd.h"\
@@ -3791,42 +1645,6 @@ DEP_CPP_START=\
$(CPP) $(CPP_PROJ) $(SOURCE)
-!ELSEIF "$(CFG)" == "cvsnt - Win32 Debug"
-
-DEP_CPP_START=\
- ".\src\cvs.h"\
- ".\windows-NT\rcmd.h"\
- ".\windows-NT\config.h"\
- ".\windows-NT\options.h"\
- ".\lib\fnmatch.h"\
- ".\windows-NT\pwd.h"\
- ".\lib\system.h"\
- ".\src\hash.h"\
- ".\src\client.h"\
- ".\src\myndbm.h"\
- ".\lib\regex.h"\
- ".\lib\getopt.h"\
- ".\lib\wait.h"\
- ".\src\rcs.h"\
- ".\src\update.h"\
- ".\src\server.h"\
- {$(INCLUDE)}"\sys\Types.h"\
- {$(INCLUDE)}"\sys\Stat.h"\
- {$(INCLUDE)}"\sys\Timeb.h"\
- {$(INCLUDE)}"\sys\Utime.h"\
- ".\windows-NT\ndir.h"\
-
-NODEP_CPP_START=\
- ".\src\popen.h"\
- ".\lib\tcpip.h"\
-
-
-"$(INTDIR)\startserver.obj" : $(SOURCE) $(DEP_CPP_START) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!ENDIF
-
# End Source File
################################################################################
# Begin Source File
@@ -4068,6 +1886,16 @@ DEP_CPP_TREES=\
# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=".\windows-NT\sockerror.c"
+
+"$(INTDIR)\sockerror.obj" : $(SOURCE) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+# End Source File
# End Target
# End Project
################################################################################