mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

test-phpdbg doesn't work entirely, and there doesn't seem to be any cause for having a target that cleans phpdbg in particular.
31 lines
1.2 KiB
Makefile
31 lines
1.2 KiB
Makefile
phpdbg: $(BUILD_BINARY)
|
|
|
|
phpdbg-shared: $(BUILD_SHARED)
|
|
|
|
$(BUILD_SHARED): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_PHPDBG_OBJS)
|
|
$(BUILD_PHPDBG_SHARED)
|
|
|
|
$(BUILD_BINARY): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_PHPDBG_OBJS)
|
|
$(BUILD_PHPDBG)
|
|
|
|
%.c: %.y
|
|
%.c: %.l
|
|
|
|
$(builddir)/phpdbg_lexer.lo: $(srcdir)/phpdbg_parser.h
|
|
|
|
$(srcdir)/phpdbg_lexer.c: $(srcdir)/phpdbg_lexer.l
|
|
@(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_lexer.l)
|
|
|
|
$(srcdir)/phpdbg_parser.h: $(srcdir)/phpdbg_parser.c
|
|
$(srcdir)/phpdbg_parser.c: $(srcdir)/phpdbg_parser.y
|
|
@$(YACC) $(YFLAGS) -v -d $(srcdir)/phpdbg_parser.y -o $@
|
|
|
|
install-phpdbg: $(BUILD_BINARY)
|
|
@echo "Installing phpdbg binary: $(INSTALL_ROOT)$(bindir)/"
|
|
@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir)
|
|
@$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/log
|
|
@$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/run
|
|
@$(INSTALL) -m 0755 $(BUILD_BINARY) $(INSTALL_ROOT)$(bindir)/$(program_prefix)phpdbg$(program_suffix)$(EXEEXT)
|
|
@echo "Installing phpdbg man page: $(INSTALL_ROOT)$(mandir)/man1/"
|
|
@$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man1
|
|
@$(INSTALL_DATA) sapi/phpdbg/phpdbg.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)phpdbg$(program_suffix).1
|