blob: d2fe379d8734435247aff73f159b610d1e11acfd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# This file is part of Hercules.
# http://herc.ws - http://github.com/HerculesWS/Hercules
#
# Copyright (C) 2012-2015 Hercules Dev Team
# Copyright (C) Athena Dev Teams
#
# Hercules is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# @configure_input@
@SET_MAKE@
COMMON_D = ../../src/common
MAP_D = ../../src/map
CHAR_D = ../../src/char
LOGIN_D = ../../src/login
PLUGIN_D = ../../src/plugins
COMMON_C = $(wildcard $(COMMON_D)/*.c)
COMMON_H = $(filter-out $(COMMON_D)/HPMDataCheck.%,$(wildcard $(COMMON_D)/*.h))
MAP_C = $(wildcard $(MAP_D)/*.c)
MAP_H = $(wildcard $(MAP_D)/*.h)
CHAR_C = $(wildcard $(CHAR_D)/*.c)
CHAR_H = $(wildcard $(CHAR_D)/*.h)
LOGIN_C = $(wildcard $(LOGIN_D)/*.c)
LOGIN_H = $(wildcard $(LOGIN_D)/*.h)
ALL_C = $(COMMON_C) $(MAP_C) $(CHAR_C) $(LOGIN_C)
ALL_H = $(COMMON_H) $(MAP_H) $(CHAR_H) $(LOGIN_H)
HOOK_INC = $(addprefix $(PLUGIN_D)/HPMHooking., \
$(addsuffix .inc, HookingPoints sources GetSymbol HPMHooksCore Hooks)) \
$(COMMON_D)/HPMDataCheck.h
HAVE_DOXYGEN=@HAVE_DOXYGEN@
HAVE_PERL=@HAVE_PERL@
ifeq ($(HAVE_DOXYGEN)$(HAVE_PERL),yesyes)
ALL_DEPENDS = hooks
else
ifeq ($(HAVE_PERL),no)
ALL_DEPENDS = needs_perl
else
ifeq ($(HAVE_DOXYGEN),no)
ALL_DEPENDS = needs_doxygen
endif
endif
endif
#####################################################################
.PHONY: hooks clean buildclean generate
all: $(ALL_DEPENDS)
buildclean:
clean: buildclean
@echo " CLEAN HPMHookGen"
@rm -rf doxyoutput
Makefile: Makefile.in
@$(MAKE) -C ../.. tools/HPMHookGen/Makefile
hooks: $(HOOK_INC)
#####################################################################
$(HOOK_INC): generate
generate: doxyoutput
@echo " Regenerating HPM Hook definitions..."
@perl HPMHookGen.pl
@echo " Regenerating HPM Data Check definitions..."
@perl HPMDataCheckGen.pl
doxyoutput: $(ALL_C) $(ALL_H) doxygen.conf
@echo " Extracting functions information..."
@doxygen doxygen.conf
#####################################################################
needs_doxygen:
@echo "doxygen not found or disabled by the configure script"
@exit 1
needs_perl:
@echo "perl not found or disabled by the configure script"
@exit 1
|