filedialog 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/gempush.yml +31 -0
  3. data/.gitignore +13 -0
  4. data/.gitmodules +3 -0
  5. data/.rubocop.yml +19 -0
  6. data/Gemfile +10 -0
  7. data/Gemfile.lock +30 -0
  8. data/LICENSE +674 -0
  9. data/README.md +22 -0
  10. data/Rakefile +35 -0
  11. data/bin/console +25 -0
  12. data/deps/filedialogbuilddeps.rb +49 -0
  13. data/deps/nativefiledialog/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  14. data/deps/nativefiledialog/.gitignore +181 -0
  15. data/deps/nativefiledialog/LICENSE +16 -0
  16. data/deps/nativefiledialog/README.md +180 -0
  17. data/deps/nativefiledialog/build/dont_run_premake.txt +1 -0
  18. data/deps/nativefiledialog/build/gmake_linux/Makefile +101 -0
  19. data/deps/nativefiledialog/build/gmake_linux/nfd.make +192 -0
  20. data/deps/nativefiledialog/build/gmake_linux/test_opendialog.make +188 -0
  21. data/deps/nativefiledialog/build/gmake_linux/test_opendialogmultiple.make +188 -0
  22. data/deps/nativefiledialog/build/gmake_linux/test_pickfolder.make +188 -0
  23. data/deps/nativefiledialog/build/gmake_linux/test_savedialog.make +188 -0
  24. data/deps/nativefiledialog/build/gmake_linux_zenity/Makefile +101 -0
  25. data/deps/nativefiledialog/build/gmake_linux_zenity/nfd.make +192 -0
  26. data/deps/nativefiledialog/build/gmake_linux_zenity/test_opendialog.make +188 -0
  27. data/deps/nativefiledialog/build/gmake_linux_zenity/test_opendialogmultiple.make +188 -0
  28. data/deps/nativefiledialog/build/gmake_linux_zenity/test_pickfolder.make +188 -0
  29. data/deps/nativefiledialog/build/gmake_linux_zenity/test_savedialog.make +188 -0
  30. data/deps/nativefiledialog/build/gmake_macosx/Makefile +85 -0
  31. data/deps/nativefiledialog/build/gmake_macosx/nfd.make +154 -0
  32. data/deps/nativefiledialog/build/gmake_macosx/test_opendialog.make +150 -0
  33. data/deps/nativefiledialog/build/gmake_macosx/test_opendialogmultiple.make +150 -0
  34. data/deps/nativefiledialog/build/gmake_macosx/test_pickfolder.make +150 -0
  35. data/deps/nativefiledialog/build/gmake_macosx/test_savedialog.make +150 -0
  36. data/deps/nativefiledialog/build/gmake_windows/Makefile +101 -0
  37. data/deps/nativefiledialog/build/gmake_windows/nfd.make +192 -0
  38. data/deps/nativefiledialog/build/gmake_windows/test_opendialog.make +188 -0
  39. data/deps/nativefiledialog/build/gmake_windows/test_opendialogmultiple.make +188 -0
  40. data/deps/nativefiledialog/build/gmake_windows/test_pickfolder.make +188 -0
  41. data/deps/nativefiledialog/build/gmake_windows/test_savedialog.make +188 -0
  42. data/deps/nativefiledialog/build/premake5.lua +265 -0
  43. data/deps/nativefiledialog/build/vs2010/NativeFileDialog.sln +78 -0
  44. data/deps/nativefiledialog/build/vs2010/nfd.vcxproj +168 -0
  45. data/deps/nativefiledialog/build/vs2010/nfd.vcxproj.filters +20 -0
  46. data/deps/nativefiledialog/build/vs2010/test_opendialog.vcxproj +182 -0
  47. data/deps/nativefiledialog/build/vs2010/test_opendialogmultiple.vcxproj +182 -0
  48. data/deps/nativefiledialog/build/vs2010/test_pickfolder.vcxproj +182 -0
  49. data/deps/nativefiledialog/build/vs2010/test_savedialog.vcxproj +182 -0
  50. data/deps/nativefiledialog/build/xcode4/NativeFileDialog.xcworkspace/contents.xcworkspacedata +19 -0
  51. data/deps/nativefiledialog/build/xcode4/nfd.xcodeproj/project.pbxproj +228 -0
  52. data/deps/nativefiledialog/build/xcode4/test_opendialog.xcodeproj/project.pbxproj +294 -0
  53. data/deps/nativefiledialog/build/xcode4/test_opendialogmultiple.xcodeproj/project.pbxproj +294 -0
  54. data/deps/nativefiledialog/build/xcode4/test_pickfolder.xcodeproj/project.pbxproj +294 -0
  55. data/deps/nativefiledialog/build/xcode4/test_savedialog.xcodeproj/project.pbxproj +294 -0
  56. data/deps/nativefiledialog/docs/build.md +39 -0
  57. data/deps/nativefiledialog/docs/contributing.md +25 -0
  58. data/deps/nativefiledialog/screens/open_cocoa.png +0 -0
  59. data/deps/nativefiledialog/screens/open_gtk3.png +0 -0
  60. data/deps/nativefiledialog/screens/open_win.png +0 -0
  61. data/deps/nativefiledialog/src/common.h +21 -0
  62. data/deps/nativefiledialog/src/include/nfd.h +74 -0
  63. data/deps/nativefiledialog/src/nfd_cocoa.m +286 -0
  64. data/deps/nativefiledialog/src/nfd_common.c +142 -0
  65. data/deps/nativefiledialog/src/nfd_common.h +39 -0
  66. data/deps/nativefiledialog/src/nfd_gtk.c +379 -0
  67. data/deps/nativefiledialog/src/nfd_win.cpp +762 -0
  68. data/deps/nativefiledialog/src/nfd_zenity.c +307 -0
  69. data/deps/nativefiledialog/src/simple_exec.h +218 -0
  70. data/deps/nativefiledialog/test/test_opendialog.c +29 -0
  71. data/deps/nativefiledialog/test/test_opendialogmultiple.c +32 -0
  72. data/deps/nativefiledialog/test/test_pickfolder.c +29 -0
  73. data/deps/nativefiledialog/test/test_savedialog.c +28 -0
  74. data/ext/filedialog/extconf.rb +58 -0
  75. data/ext/filedialog/filedialog.c +118 -0
  76. data/filedialog.gemspec +48 -0
  77. data/lib/filedialog.rb +50 -0
  78. data/lib/filedialog/version.rb +5 -0
  79. metadata +137 -0
@@ -0,0 +1,101 @@
1
+ # GNU Make workspace makefile autogenerated by Premake
2
+
3
+ ifndef config
4
+ config=release_x64
5
+ endif
6
+
7
+ ifndef verbose
8
+ SILENT = @
9
+ endif
10
+
11
+ ifeq ($(config),release_x64)
12
+ nfd_config = release_x64
13
+ test_pickfolder_config = release_x64
14
+ test_opendialog_config = release_x64
15
+ test_opendialogmultiple_config = release_x64
16
+ test_savedialog_config = release_x64
17
+ endif
18
+ ifeq ($(config),release_x86)
19
+ nfd_config = release_x86
20
+ test_pickfolder_config = release_x86
21
+ test_opendialog_config = release_x86
22
+ test_opendialogmultiple_config = release_x86
23
+ test_savedialog_config = release_x86
24
+ endif
25
+ ifeq ($(config),debug_x64)
26
+ nfd_config = debug_x64
27
+ test_pickfolder_config = debug_x64
28
+ test_opendialog_config = debug_x64
29
+ test_opendialogmultiple_config = debug_x64
30
+ test_savedialog_config = debug_x64
31
+ endif
32
+ ifeq ($(config),debug_x86)
33
+ nfd_config = debug_x86
34
+ test_pickfolder_config = debug_x86
35
+ test_opendialog_config = debug_x86
36
+ test_opendialogmultiple_config = debug_x86
37
+ test_savedialog_config = debug_x86
38
+ endif
39
+
40
+ PROJECTS := nfd test_pickfolder test_opendialog test_opendialogmultiple test_savedialog
41
+
42
+ .PHONY: all clean help $(PROJECTS)
43
+
44
+ all: $(PROJECTS)
45
+
46
+ nfd:
47
+ ifneq (,$(nfd_config))
48
+ @echo "==== Building nfd ($(nfd_config)) ===="
49
+ @${MAKE} --no-print-directory -C . -f nfd.make config=$(nfd_config)
50
+ endif
51
+
52
+ test_pickfolder: nfd
53
+ ifneq (,$(test_pickfolder_config))
54
+ @echo "==== Building test_pickfolder ($(test_pickfolder_config)) ===="
55
+ @${MAKE} --no-print-directory -C . -f test_pickfolder.make config=$(test_pickfolder_config)
56
+ endif
57
+
58
+ test_opendialog: nfd
59
+ ifneq (,$(test_opendialog_config))
60
+ @echo "==== Building test_opendialog ($(test_opendialog_config)) ===="
61
+ @${MAKE} --no-print-directory -C . -f test_opendialog.make config=$(test_opendialog_config)
62
+ endif
63
+
64
+ test_opendialogmultiple: nfd
65
+ ifneq (,$(test_opendialogmultiple_config))
66
+ @echo "==== Building test_opendialogmultiple ($(test_opendialogmultiple_config)) ===="
67
+ @${MAKE} --no-print-directory -C . -f test_opendialogmultiple.make config=$(test_opendialogmultiple_config)
68
+ endif
69
+
70
+ test_savedialog: nfd
71
+ ifneq (,$(test_savedialog_config))
72
+ @echo "==== Building test_savedialog ($(test_savedialog_config)) ===="
73
+ @${MAKE} --no-print-directory -C . -f test_savedialog.make config=$(test_savedialog_config)
74
+ endif
75
+
76
+ clean:
77
+ @${MAKE} --no-print-directory -C . -f nfd.make clean
78
+ @${MAKE} --no-print-directory -C . -f test_pickfolder.make clean
79
+ @${MAKE} --no-print-directory -C . -f test_opendialog.make clean
80
+ @${MAKE} --no-print-directory -C . -f test_opendialogmultiple.make clean
81
+ @${MAKE} --no-print-directory -C . -f test_savedialog.make clean
82
+
83
+ help:
84
+ @echo "Usage: make [config=name] [target]"
85
+ @echo ""
86
+ @echo "CONFIGURATIONS:"
87
+ @echo " release_x64"
88
+ @echo " release_x86"
89
+ @echo " debug_x64"
90
+ @echo " debug_x86"
91
+ @echo ""
92
+ @echo "TARGETS:"
93
+ @echo " all (default)"
94
+ @echo " clean"
95
+ @echo " nfd"
96
+ @echo " test_pickfolder"
97
+ @echo " test_opendialog"
98
+ @echo " test_opendialogmultiple"
99
+ @echo " test_savedialog"
100
+ @echo ""
101
+ @echo "For more information, see https://github.com/premake/premake-core/wiki"
@@ -0,0 +1,192 @@
1
+ # GNU Make project makefile autogenerated by Premake
2
+
3
+ ifndef config
4
+ config=release_x64
5
+ endif
6
+
7
+ ifndef verbose
8
+ SILENT = @
9
+ endif
10
+
11
+ .PHONY: clean prebuild prelink
12
+
13
+ ifeq ($(config),release_x64)
14
+ RESCOMP = windres
15
+ TARGETDIR = ../lib/Release/x64
16
+ TARGET = $(TARGETDIR)/libnfd.a
17
+ OBJDIR = ../obj/x64/Release/nfd
18
+ DEFINES += -DNDEBUG
19
+ INCLUDES += -I../../src/include
20
+ FORCE_INCLUDE +=
21
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
22
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -O2 -Wall -Wextra -fno-exceptions
23
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -O2 -Wall -Wextra -fno-exceptions
24
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
25
+ LIBS +=
26
+ LDDEPS +=
27
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64 -s
28
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
29
+ define PREBUILDCMDS
30
+ endef
31
+ define PRELINKCMDS
32
+ endef
33
+ define POSTBUILDCMDS
34
+ endef
35
+ all: prebuild prelink $(TARGET)
36
+ @:
37
+
38
+ endif
39
+
40
+ ifeq ($(config),release_x86)
41
+ RESCOMP = windres
42
+ TARGETDIR = ../lib/Release/x86
43
+ TARGET = $(TARGETDIR)/libnfd.a
44
+ OBJDIR = ../obj/x86/Release/nfd
45
+ DEFINES += -DNDEBUG
46
+ INCLUDES += -I../../src/include
47
+ FORCE_INCLUDE +=
48
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
49
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -O2 -Wall -Wextra -fno-exceptions
50
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -O2 -Wall -Wextra -fno-exceptions
51
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
52
+ LIBS +=
53
+ LDDEPS +=
54
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32 -s
55
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
56
+ define PREBUILDCMDS
57
+ endef
58
+ define PRELINKCMDS
59
+ endef
60
+ define POSTBUILDCMDS
61
+ endef
62
+ all: prebuild prelink $(TARGET)
63
+ @:
64
+
65
+ endif
66
+
67
+ ifeq ($(config),debug_x64)
68
+ RESCOMP = windres
69
+ TARGETDIR = ../lib/Debug/x64
70
+ TARGET = $(TARGETDIR)/libnfd_d.a
71
+ OBJDIR = ../obj/x64/Debug/nfd
72
+ DEFINES += -DDEBUG
73
+ INCLUDES += -I../../src/include
74
+ FORCE_INCLUDE +=
75
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
76
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -g -Wall -Wextra -fno-exceptions
77
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -g -Wall -Wextra -fno-exceptions
78
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
79
+ LIBS +=
80
+ LDDEPS +=
81
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib64 -m64
82
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
83
+ define PREBUILDCMDS
84
+ endef
85
+ define PRELINKCMDS
86
+ endef
87
+ define POSTBUILDCMDS
88
+ endef
89
+ all: prebuild prelink $(TARGET)
90
+ @:
91
+
92
+ endif
93
+
94
+ ifeq ($(config),debug_x86)
95
+ RESCOMP = windres
96
+ TARGETDIR = ../lib/Debug/x86
97
+ TARGET = $(TARGETDIR)/libnfd_d.a
98
+ OBJDIR = ../obj/x86/Debug/nfd
99
+ DEFINES += -DDEBUG
100
+ INCLUDES += -I../../src/include
101
+ FORCE_INCLUDE +=
102
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
103
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -g -Wall -Wextra -fno-exceptions
104
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -g -Wall -Wextra -fno-exceptions
105
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
106
+ LIBS +=
107
+ LDDEPS +=
108
+ ALL_LDFLAGS += $(LDFLAGS) -L/usr/lib32 -m32
109
+ LINKCMD = $(AR) -rcs "$@" $(OBJECTS)
110
+ define PREBUILDCMDS
111
+ endef
112
+ define PRELINKCMDS
113
+ endef
114
+ define POSTBUILDCMDS
115
+ endef
116
+ all: prebuild prelink $(TARGET)
117
+ @:
118
+
119
+ endif
120
+
121
+ OBJECTS := \
122
+ $(OBJDIR)/nfd_common.o \
123
+ $(OBJDIR)/nfd_zenity.o \
124
+
125
+ RESOURCES := \
126
+
127
+ CUSTOMFILES := \
128
+
129
+ SHELLTYPE := posix
130
+ ifeq (.exe,$(findstring .exe,$(ComSpec)))
131
+ SHELLTYPE := msdos
132
+ endif
133
+
134
+ $(TARGET): $(GCH) ${CUSTOMFILES} $(OBJECTS) $(LDDEPS) $(RESOURCES) | $(TARGETDIR)
135
+ @echo Linking nfd
136
+ $(SILENT) $(LINKCMD)
137
+ $(POSTBUILDCMDS)
138
+
139
+ $(CUSTOMFILES): | $(OBJDIR)
140
+
141
+ $(TARGETDIR):
142
+ @echo Creating $(TARGETDIR)
143
+ ifeq (posix,$(SHELLTYPE))
144
+ $(SILENT) mkdir -p $(TARGETDIR)
145
+ else
146
+ $(SILENT) mkdir $(subst /,\\,$(TARGETDIR))
147
+ endif
148
+
149
+ $(OBJDIR):
150
+ @echo Creating $(OBJDIR)
151
+ ifeq (posix,$(SHELLTYPE))
152
+ $(SILENT) mkdir -p $(OBJDIR)
153
+ else
154
+ $(SILENT) mkdir $(subst /,\\,$(OBJDIR))
155
+ endif
156
+
157
+ clean:
158
+ @echo Cleaning nfd
159
+ ifeq (posix,$(SHELLTYPE))
160
+ $(SILENT) rm -f $(TARGET)
161
+ $(SILENT) rm -rf $(OBJDIR)
162
+ else
163
+ $(SILENT) if exist $(subst /,\\,$(TARGET)) del $(subst /,\\,$(TARGET))
164
+ $(SILENT) if exist $(subst /,\\,$(OBJDIR)) rmdir /s /q $(subst /,\\,$(OBJDIR))
165
+ endif
166
+
167
+ prebuild:
168
+ $(PREBUILDCMDS)
169
+
170
+ prelink:
171
+ $(PRELINKCMDS)
172
+
173
+ ifneq (,$(PCH))
174
+ $(OBJECTS): $(GCH) $(PCH) | $(OBJDIR)
175
+ $(GCH): $(PCH) | $(OBJDIR)
176
+ @echo $(notdir $<)
177
+ $(SILENT) $(CC) -x c-header $(ALL_CFLAGS) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"
178
+ else
179
+ $(OBJECTS): | $(OBJDIR)
180
+ endif
181
+
182
+ $(OBJDIR)/nfd_common.o: ../../src/nfd_common.c
183
+ @echo $(notdir $<)
184
+ $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
185
+ $(OBJDIR)/nfd_zenity.o: ../../src/nfd_zenity.c
186
+ @echo $(notdir $<)
187
+ $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
188
+
189
+ -include $(OBJECTS:%.o=%.d)
190
+ ifneq (,$(PCH))
191
+ -include $(OBJDIR)/$(notdir $(PCH)).d
192
+ endif
@@ -0,0 +1,188 @@
1
+ # GNU Make project makefile autogenerated by Premake
2
+
3
+ ifndef config
4
+ config=release_x64
5
+ endif
6
+
7
+ ifndef verbose
8
+ SILENT = @
9
+ endif
10
+
11
+ .PHONY: clean prebuild prelink
12
+
13
+ ifeq ($(config),release_x64)
14
+ RESCOMP = windres
15
+ TARGETDIR = ../bin
16
+ TARGET = $(TARGETDIR)/test_opendialog
17
+ OBJDIR = ../obj/x64/Release/test_opendialog
18
+ DEFINES += -DNDEBUG
19
+ INCLUDES += -I../../src/include
20
+ FORCE_INCLUDE +=
21
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
22
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -O2
23
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -O2
24
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
25
+ LIBS += ../lib/Release/x64/libnfd.a
26
+ LDDEPS += ../lib/Release/x64/libnfd.a
27
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Release/x64 -L/usr/lib64 -m64 -s -lnfd
28
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
29
+ define PREBUILDCMDS
30
+ endef
31
+ define PRELINKCMDS
32
+ endef
33
+ define POSTBUILDCMDS
34
+ endef
35
+ all: prebuild prelink $(TARGET)
36
+ @:
37
+
38
+ endif
39
+
40
+ ifeq ($(config),release_x86)
41
+ RESCOMP = windres
42
+ TARGETDIR = ../bin
43
+ TARGET = $(TARGETDIR)/test_opendialog
44
+ OBJDIR = ../obj/x86/Release/test_opendialog
45
+ DEFINES += -DNDEBUG
46
+ INCLUDES += -I../../src/include
47
+ FORCE_INCLUDE +=
48
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
49
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -O2
50
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -O2
51
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
52
+ LIBS += ../lib/Release/x86/libnfd.a
53
+ LDDEPS += ../lib/Release/x86/libnfd.a
54
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Release/x86 -L/usr/lib32 -m32 -s -lnfd
55
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
56
+ define PREBUILDCMDS
57
+ endef
58
+ define PRELINKCMDS
59
+ endef
60
+ define POSTBUILDCMDS
61
+ endef
62
+ all: prebuild prelink $(TARGET)
63
+ @:
64
+
65
+ endif
66
+
67
+ ifeq ($(config),debug_x64)
68
+ RESCOMP = windres
69
+ TARGETDIR = ../bin
70
+ TARGET = $(TARGETDIR)/test_opendialog_d
71
+ OBJDIR = ../obj/x64/Debug/test_opendialog
72
+ DEFINES += -DDEBUG
73
+ INCLUDES += -I../../src/include
74
+ FORCE_INCLUDE +=
75
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
76
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m64 -g
77
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m64 -g
78
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
79
+ LIBS += -lnfd_d
80
+ LDDEPS +=
81
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Debug/x64 -L/usr/lib64 -m64 -lnfd_d
82
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
83
+ define PREBUILDCMDS
84
+ endef
85
+ define PRELINKCMDS
86
+ endef
87
+ define POSTBUILDCMDS
88
+ endef
89
+ all: prebuild prelink $(TARGET)
90
+ @:
91
+
92
+ endif
93
+
94
+ ifeq ($(config),debug_x86)
95
+ RESCOMP = windres
96
+ TARGETDIR = ../bin
97
+ TARGET = $(TARGETDIR)/test_opendialog_d
98
+ OBJDIR = ../obj/x86/Debug/test_opendialog
99
+ DEFINES += -DDEBUG
100
+ INCLUDES += -I../../src/include
101
+ FORCE_INCLUDE +=
102
+ ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES)
103
+ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -m32 -g
104
+ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -m32 -g
105
+ ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES)
106
+ LIBS += -lnfd_d
107
+ LDDEPS +=
108
+ ALL_LDFLAGS += $(LDFLAGS) -L../lib/Debug/x86 -L/usr/lib32 -m32 -lnfd_d
109
+ LINKCMD = $(CC) -o "$@" $(OBJECTS) $(RESOURCES) $(ALL_LDFLAGS) $(LIBS)
110
+ define PREBUILDCMDS
111
+ endef
112
+ define PRELINKCMDS
113
+ endef
114
+ define POSTBUILDCMDS
115
+ endef
116
+ all: prebuild prelink $(TARGET)
117
+ @:
118
+
119
+ endif
120
+
121
+ OBJECTS := \
122
+ $(OBJDIR)/test_opendialog.o \
123
+
124
+ RESOURCES := \
125
+
126
+ CUSTOMFILES := \
127
+
128
+ SHELLTYPE := posix
129
+ ifeq (.exe,$(findstring .exe,$(ComSpec)))
130
+ SHELLTYPE := msdos
131
+ endif
132
+
133
+ $(TARGET): $(GCH) ${CUSTOMFILES} $(OBJECTS) $(LDDEPS) $(RESOURCES) | $(TARGETDIR)
134
+ @echo Linking test_opendialog
135
+ $(SILENT) $(LINKCMD)
136
+ $(POSTBUILDCMDS)
137
+
138
+ $(CUSTOMFILES): | $(OBJDIR)
139
+
140
+ $(TARGETDIR):
141
+ @echo Creating $(TARGETDIR)
142
+ ifeq (posix,$(SHELLTYPE))
143
+ $(SILENT) mkdir -p $(TARGETDIR)
144
+ else
145
+ $(SILENT) mkdir $(subst /,\\,$(TARGETDIR))
146
+ endif
147
+
148
+ $(OBJDIR):
149
+ @echo Creating $(OBJDIR)
150
+ ifeq (posix,$(SHELLTYPE))
151
+ $(SILENT) mkdir -p $(OBJDIR)
152
+ else
153
+ $(SILENT) mkdir $(subst /,\\,$(OBJDIR))
154
+ endif
155
+
156
+ clean:
157
+ @echo Cleaning test_opendialog
158
+ ifeq (posix,$(SHELLTYPE))
159
+ $(SILENT) rm -f $(TARGET)
160
+ $(SILENT) rm -rf $(OBJDIR)
161
+ else
162
+ $(SILENT) if exist $(subst /,\\,$(TARGET)) del $(subst /,\\,$(TARGET))
163
+ $(SILENT) if exist $(subst /,\\,$(OBJDIR)) rmdir /s /q $(subst /,\\,$(OBJDIR))
164
+ endif
165
+
166
+ prebuild:
167
+ $(PREBUILDCMDS)
168
+
169
+ prelink:
170
+ $(PRELINKCMDS)
171
+
172
+ ifneq (,$(PCH))
173
+ $(OBJECTS): $(GCH) $(PCH) | $(OBJDIR)
174
+ $(GCH): $(PCH) | $(OBJDIR)
175
+ @echo $(notdir $<)
176
+ $(SILENT) $(CC) -x c-header $(ALL_CFLAGS) -o "$@" -MF "$(@:%.gch=%.d)" -c "$<"
177
+ else
178
+ $(OBJECTS): | $(OBJDIR)
179
+ endif
180
+
181
+ $(OBJDIR)/test_opendialog.o: ../../test/test_opendialog.c
182
+ @echo $(notdir $<)
183
+ $(SILENT) $(CC) $(ALL_CFLAGS) $(FORCE_INCLUDE) -o "$@" -MF "$(@:%.o=%.d)" -c "$<"
184
+
185
+ -include $(OBJECTS:%.o=%.d)
186
+ ifneq (,$(PCH))
187
+ -include $(OBJDIR)/$(notdir $(PCH)).d
188
+ endif