blob: 84ce2a472268220f8c00a504895d319d42b47244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#------------------------------------------------------------- -*- makefile -*-
$(PROJECT): setup pkgindex $(PRJLIB)
!if "$(PROJECT)" != "tcl" && "$(PROJECT)" != "tk"
# MAKEBINCMD will do shared, static and debug links as appropriate
# _VC_MANIFEST_EMBED_DLL embeds the manifest for shared libraries
# and is a no-op for static libraries
$(PRJLIB): $(PRJ_OBJS) $(RESFILE)
$(MAKEBINCMD) $**
$(_VC_MANIFEST_EMBED_DLL)
-@del $*.exp
!endif
setup: default-setup
install: default-install
clean: default-clean
realclean: hose
hose: default-hose
distclean: realclean default-distclean
|