Skip to content

Commit

Permalink
Minor nmake tweaks, remove obsolete target
Browse files Browse the repository at this point in the history
  • Loading branch information
apnadkarni committed Oct 11, 2023
1 parent 96bbf46 commit 646abe6
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions win/makefile.vc
Original file line number Diff line number Diff line change
Expand Up @@ -517,24 +517,16 @@ core: libtclzip
@$(COPY) /b "$(TCLLIBRAW)"+"$(TCLSCRIPTZIP)" "$(TCLLIB)"
!endif

shell: setup $(TCLSH)
shell: setup core $(TCLSH)
!if $(TCL_EMBED_SCRIPTS) && $(STATIC_BUILD)
shell: libtclzip
@$(COPY) /b "$(TCLSHRAW)"+"$(TCLSCRIPTZIP)" "$(TCLSH)"
!endif

dlls: setup $(TCLREGLIB) $(TCLDDELIB) $(OUT_DIR)\zlib1.dll $(OUT_DIR)\libtommath.dll
libtclzip: $(TCLSCRIPTZIP)
tbdembed: setup $(TCLSH) $(TCLSTUBLIB) libtclzip
!if $(TCL_EMBED_SCRIPTS)
!if $(STATIC_BUILD)
@copy /y /b "$(TCLSH)"+"$(TCLSCRIPTZIP)" "$(TCLSH)"
!else
@copy /y /b "$(TCLLIB)"+"$(TCLSCRIPTZIP)" "$(TCLLIB)"
!endif
!endif

tcltest: setup $(TCLTEST) dlls
tcltest: setup core $(TCLTEST) dlls
!if $(TCL_EMBED_SCRIPTS) && $(STATIC_BUILD)
tcltest: libtclzip
@$(COPY) /b "$(TCLTESTRAW)"+"$(TCLSCRIPTZIP)" "$(TCLTEST)"
Expand Down

0 comments on commit 646abe6

Please sign in to comment.