Skip to content

Commit

Permalink
modified: Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLagodych committed Oct 22, 2020
1 parent 277d80e commit 56ca889
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tcl_lib = "tcl85"
# Tk library
tk_lib = "tk85"

# ------------ Needed only if a standalone realease is needed ---------------
# ------------ Needed only if a standalone release is needed ---------------
# Note: in this case a ./lib directory will be created

# If set to "yes" then all Tcl/Tk will be copies to ./bin
Expand All @@ -29,7 +29,7 @@ all: imgscale ftpImager
cp -r Img ./bin/Img
ifeq ($(copy_tcl_binaries), "yes")
cp $(tcl_bind)/*.dll ./bin
cp -r $(tcl_libd) ./lib
cp -r $(tcl_libd)/* ./lib
rm ./lib/*.lib
rm ./lib/*.sh
rm -r -f ./lib/ppm
Expand All @@ -42,6 +42,9 @@ ifeq ($(wildcard ./obj),)
endif
ifeq ($(wildcard ./bin),)
mkdir ./bin
endif
ifeq ($(wildcard ./lib),)
mkdir ./lib
endif
echo "Initialization completed!"

Expand Down

0 comments on commit 56ca889

Please sign in to comment.