Lines Matching refs:if
9 # if [call create-lists.bat header $(makefile_snippet_file) $(variable_name)]
12 # if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]
15 # if [call create-lists.bat footer $(makefile_snippet_file)]
17 # ... (repeat the if [call ...] lines in the above order if needed)
22 #!if [del /f /q $(makefile_snippet_file)]
26 # instead when doing 'if [call create-lists.bat file $(makefile_snippet_file) $(file_name)]'
27 # (repeat if there are multiple $(srcext)'s in $(source_list), ignore any headers):
28 # !if [for %c in ($(source_list)) do @if "%~xc" == ".$(srcext)" @call create-lists.bat file $(makefile_snippet_file) $(intdir)\%~nc.obj]
31 # %~xc gives the file extension of a given file, %c in this case, so if %c is a.cc, %~xc means .cc
32 # %~nc gives the file name of a given file without extension, %c in this case, so if %c is a.cc, %~nc means a
37 !if [call create-lists.bat header hb_objs.mak harfbuzz_dll_OBJS]
40 !if [for %c in ($(HB_SOURCES)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\harfbuzz\%~nc.obj]
43 !if [for %c in ($(HB_SOURCES)) do @if "%~xc" == ".c" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\harfbuzz\%~nc.obj]
46 !if [call create-lists.bat footer hb_objs.mak]
50 !if "$(GOBJECT)" == "1"
52 !if [call create-lists.bat header hb_objs.mak harfbuzz_gobject_OBJS]
55 !if [for %c in ($(HB_GOBJECT_sources) $(HB_GOBJECT_ENUM_sources)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\harfbuzz-gobject\%~nc.obj]
58 !if [call create-lists.bat footer hb_objs.mak]
63 !if "$(ICU)" == "1"
65 !if [call create-lists.bat header hb_objs.mak harfbuzz_icu_OBJS]
68 !if [for %c in ($(HB_ICU_sources)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\harfbuzz-icu\%~nc.obj]
71 !if [call create-lists.bat footer hb_objs.mak]
76 !if "$(GLIB)" == "1"
79 !if "$(CAIRO_FT)" == "1"
81 !if [call create-lists.bat header hb_objs.mak hb_view_OBJS]
84 !if [for %c in ($(HB_VIEW_sources)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\util\%~nc.obj]
87 !if [call create-lists.bat footer hb_objs.mak]
92 !if [call create-lists.bat header hb_objs.mak hb_shape_OBJS]
95 !if [for %c in ($(HB_SHAPE_sources)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\util\%~nc.obj]
98 !if [call create-lists.bat footer hb_objs.mak]
103 !if [call create-lists.bat header hb_objs.mak hb_ot_shape_closure_OBJS]
106 !if [for %c in ($(HB_OT_SHAPE_CLOSURE_sources)) do @if "%~xc" == ".cc" @call create-lists.bat file hb_objs.mak ^$(CFG)\^$(PLAT)\util\%~nc.obj]
109 !if [call create-lists.bat footer hb_objs.mak]
116 !if [del /f /q hb_objs.mak]
120 !if [call create-lists.bat header hb_srcs.mak HB_ACTUAL_HEADERS]
123 !if [for %h in ($(HB_HEADERS)) do @call create-lists.bat file hb_srcs.mak ..\src\%h]
126 !if [call create-lists.bat footer hb_srcs.mak]
130 !if [call create-lists.bat header hb_srcs.mak HB_ACTUAL_SOURCES]
133 !if [for %s in ($(HB_SOURCES)) do @call create-lists.bat file hb_srcs.mak ..\src\%s]
136 !if [call create-lists.bat footer hb_srcs.mak]
139 !if [call create-lists.bat header hb_srcs.mak HB_GOBJECT_ACTUAL_SOURCES]
142 !if [for %s in ($(HB_GOBJECT_sources) $(HB_GOBJECT_STRUCTS_headers)) do @call create-lists.bat file hb_srcs.mak ..\src\%s]
145 !if [call create-lists.bat footer hb_srcs.mak]
150 !if [del /f /q hb_srcs.mak]