diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-10 10:37:44 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-10 10:37:44 (GMT) |
| commit | a9c0e83fb00eef6b3be5db888dfa2cfad2c0eb52 (patch) | |
| tree | 953fe3ba7bd85b5ff0ac63b50f9891842a924e21 | |
| parent | a455c140eaab90a3f1f588ce4e8a841e2b260fa6 (diff) | |
| download | tcl-a9c0e83fb00eef6b3be5db888dfa2cfad2c0eb52.zip tcl-a9c0e83fb00eef6b3be5db888dfa2cfad2c0eb52.tar.gz tcl-a9c0e83fb00eef6b3be5db888dfa2cfad2c0eb52.tar.bz2 | |
Eliminate nmake build warning
| -rw-r--r-- | win/makefile.vc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 6b2a682..1ef64f2 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -819,7 +819,8 @@ $(TMP_DIR)\tclEvent.obj: $(GENERICDIR)\tclEvent.c $(TMP_DIR)\tclUuid.h -Fo$@ $(GENERICDIR)\tclEvent.c
$(TMP_DIR)\tclTest.obj: $(GENERICDIR)\tclTest.c $(TMP_DIR)\tclUuid.h
- $(cc32) $(appcflags) -I$(TMP_DIR) -Fo$@ $?
+ $(cc32) $(appcflags) -I$(TMP_DIR) \
+ -Fo$@ $(GENERICDIR)\tclTest.c
$(TMP_DIR)\tclTestObj.obj: $(GENERICDIR)\tclTestObj.c
$(cc32) $(appcflags) -Fo$@ $?
|
