61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#---------------------------------------------------------------------
# Project specific targets
#---------------------------------------------------------------------
all: setup default-target
clean: default-clean
realclean: default-hose
# Explicit dependency rules
$(PRJ_OBJS): $(TMP_DIR)\tls.tcl.h $(TMP_DIR)\tlsUuid.h
# We must define a pkgindex target that will create a pkgIndex.tcl
# file in the $(OUT_DIR) directory. We can just redirect to the
# default-pkgindex target for our sample extension.
|
>
|
|
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#---------------------------------------------------------------------
# Project specific targets
#---------------------------------------------------------------------
all: setup default-target
clean: default-clean
@if exist $(WIN_DIR)\..\manifest.uuid del $(WIN_DIR)\..\manifest.uuid
realclean: clean default-hose
# Explicit dependency rules
$(PRJ_OBJS): $(TMP_DIR)\tls.tcl.h $(TMP_DIR)\tlsUuid.h
# We must define a pkgindex target that will create a pkgIndex.tcl
# file in the $(OUT_DIR) directory. We can just redirect to the
# default-pkgindex target for our sample extension.
|