You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/core/plug-in/stats/Makefile

24 lines
615 B

COREPATH =../..
plug_in_name = stats
QUERY_STATS_NAME = sems-stats
module_ldflags =
module_cflags =
extra_target = $(QUERY_STATS_NAME)
extra_install = install_query_stats
extra_clean = clean_query_stats
include ../Makefile.app_module
$(QUERY_STATS_NAME): query_stats.cxx Makefile
$(CXX) $(CXXFLAGS) -o $(QUERY_STATS_NAME) query_stats.cxx
install_query_stats: $(QUERY_STATS_NAME) $(DESTDIR)$(bin-prefix)/$(bin-dir)
$(INSTALL-TOUCH) $(DESTDIR)$(bin-prefix)/$(bin-dir)$(QUERY_STATS_NAME)
$(INSTALL-BIN) $(QUERY_STATS_NAME) $(DESTDIR)$(bin-prefix)/$(bin-dir)
clean_query_stats:
rm -f $(QUERY_STATS_NAME)