| 25 GAIM_INSTALL_PERLMOD_DIR := $(GAIM_INSTALL_DIR)/perlmod |
25 GAIM_INSTALL_PERLMOD_DIR := $(GAIM_INSTALL_DIR)/perlmod |
| 26 GAIM_INSTALL_PLUGINS_DIR := $(GAIM_INSTALL_DIR)/plugins |
26 GAIM_INSTALL_PLUGINS_DIR := $(GAIM_INSTALL_DIR)/plugins |
| 27 GAIM_INSTALL_PO_DIR := $(GAIM_INSTALL_DIR)/locale |
27 GAIM_INSTALL_PO_DIR := $(GAIM_INSTALL_DIR)/locale |
| 28 |
28 |
| 29 # Important (enough) locations in our source code |
29 # Important (enough) locations in our source code |
| 30 GAIM_LIB_TOP := $(GAIM_TOP)/libgaim |
30 GAIM_LIB_TOP := $(GAIM_TOP)/libpurple |
| 31 GAIM_LIB_PLUGINS_TOP := $(GAIM_LIB_TOP)/plugins |
31 GAIM_LIB_PLUGINS_TOP := $(GAIM_LIB_TOP)/plugins |
| 32 GAIM_LIB_PERL_TOP := $(GAIM_LIB_PLUGINS_TOP)/perl |
32 GAIM_LIB_PERL_TOP := $(GAIM_LIB_PLUGINS_TOP)/perl |
| 33 GAIM_GTK_TOP := $(GAIM_TOP)/gtk |
33 GAIM_GTK_TOP := $(GAIM_TOP)/pidgin |
| 34 GAIM_GTK_IDLETRACK_TOP := $(GAIM_GTK_TOP)/win32/IdleTracker |
34 GAIM_GTK_IDLETRACK_TOP := $(GAIM_GTK_TOP)/win32/IdleTracker |
| 35 GAIM_GTK_PIXMAPS_TOP := $(GAIM_GTK_TOP)/pixmaps |
35 GAIM_GTK_PIXMAPS_TOP := $(GAIM_GTK_TOP)/pixmaps |
| 36 GAIM_GTK_PLUGINS_TOP := $(GAIM_GTK_TOP)/plugins |
36 GAIM_GTK_PLUGINS_TOP := $(GAIM_GTK_TOP)/plugins |
| 37 GAIM_GTK_SOUNDS_TOP := $(GAIM_GTK_TOP)/sounds |
37 GAIM_GTK_SOUNDS_TOP := $(GAIM_GTK_TOP)/sounds |
| 38 GAIM_PO_TOP := $(GAIM_TOP)/po |
38 GAIM_PO_TOP := $(GAIM_TOP)/po |
| 39 GAIM_PROTOS_TOP := $(GAIM_LIB_TOP)/protocols |
39 GAIM_PROTOS_TOP := $(GAIM_LIB_TOP)/protocols |
| 40 |
40 |
| 41 # Locations of important (in-tree) build targets |
41 # Locations of important (in-tree) build targets |
| 42 GAIM_CONFIG_H := $(GAIM_TOP)/config.h |
42 GAIM_CONFIG_H := $(GAIM_TOP)/config.h |
| 43 GAIM_IDLETRACK_DLL := $(GAIM_GTK_IDLETRACK_TOP)/idletrack.dll |
43 GAIM_IDLETRACK_DLL := $(GAIM_GTK_IDLETRACK_TOP)/idletrack.dll |
| 44 GAIM_LIBGAIM_DLL := $(GAIM_LIB_TOP)/libgaim.dll |
44 GAIM_LIBGAIM_DLL := $(GAIM_LIB_TOP)/libpurple.dll |
| 45 GAIM_LIBGAIM_PERL_DLL := $(GAIM_LIB_PERL_TOP)/perl.dll |
45 GAIM_LIBGAIM_PERL_DLL := $(GAIM_LIB_PERL_TOP)/perl.dll |
| 46 GAIM_GTKGAIM_DLL := $(GAIM_GTK_TOP)/gtkgaim.dll |
46 GAIM_GTKGAIM_DLL := $(GAIM_GTK_TOP)/pidgin.dll |
| 47 GAIM_EXE := $(GAIM_GTK_TOP)/gaim.exe |
47 GAIM_EXE := $(GAIM_GTK_TOP)/gaim.exe |
| 48 GAIM_PORTABLE_EXE := $(GAIM_GTK_TOP)/gaim-portable.exe |
48 GAIM_PORTABLE_EXE := $(GAIM_GTK_TOP)/gaim-portable.exe |
| 49 |
49 |
| 50 GCCWARNINGS := -Waggregate-return -Wcast-align -Wdeclaration-after-statement -Werror-implicit-function-declaration -Wextra -Wno-sign-compare -Wno-unused-parameter -Winit-self -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wundef |
50 GCCWARNINGS := -Waggregate-return -Wcast-align -Wdeclaration-after-statement -Werror-implicit-function-declaration -Wextra -Wno-sign-compare -Wno-unused-parameter -Winit-self -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wundef |
| 51 |
51 |