diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2017-10-07 14:17:04 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2017-10-07 14:17:04 (GMT) |
commit | d21e7a48cf0f67c189cdf2b2830c8c14f913d758 (patch) | |
tree | 20fb5c1252aba6b6ee4d774be2f01660e3402bee /win/makefile.vc | |
parent | 1cd076233846d0150dcb8d78b3df424a781c4302 (diff) | |
download | tk-d21e7a48cf0f67c189cdf2b2830c8c14f913d758.zip tk-d21e7a48cf0f67c189cdf2b2830c8c14f913d758.tar.gz tk-d21e7a48cf0f67c189cdf2b2830c8c14f913d758.tar.bz2 |
Do not use the standard targets as the Tk extension targets are too varied
for them to really help. Maybe revisit this at some later point.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 97d07dc..03deef8 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -416,8 +416,6 @@ PRJ_LIBS = netapi32.lib gdi32.lib user32.lib userenv.lib TESTFLAGS = $(TESTFLAGS) -file $(TESTPAT)
!endif
-
-!include targets.vc
#---------------------------------------------------------------------
# Project specific targets
#---------------------------------------------------------------------
@@ -429,6 +427,7 @@ cwish: $(WISHC) install: install-binaries install-libraries install-docs
tktest: setup $(TKTEST) $(CAT32)
+setup: default-setup
test: test-classic test-ttk
@@ -761,6 +760,9 @@ install-libraries: # Clean up
#---------------------------------------------------------------------
+clean: default-clean
+realclean: hose
+hose: default-hose
tidy:
!if "$(TKLIB)" != "$(TKIMPLIB)"
@echo Removing $(TKLIB) ...
|