L4Re/departure

Changeset

509:ebac44cdf67f
2023-03-10 Paul Boddie raw files shortlog changelog graph Removed redundant interface generation definitions.
libexec/rm/Makefile (file)
     1.1 --- a/libexec/rm/Makefile	Thu Mar 09 19:27:22 2023 +0100
     1.2 +++ b/libexec/rm/Makefile	Fri Mar 10 01:19:23 2023 +0100
     1.3 @@ -14,32 +14,11 @@
     1.4  DEFAULT_RELOC_amd64	:= 0x70000000
     1.5  DEFAULT_RELOC_mips	:= 0x70000000
     1.6  
     1.7 -# Locations for interface input and generated output.
     1.8 -
     1.9 -IDL_DIR		= $(PKGDIR)/../libsystypes/idl
    1.10 -IDL_MK_DIR	= $(L4DIR)/idl4re/mk
    1.11 -IDL_BUILD_DIR	= .
    1.12 -IDL_EXPORT_DIR	= .
    1.13 -
    1.14 -include $(IDL_MK_DIR)/idl.mk
    1.15 -
    1.16 -# Required interfaces.
    1.17 -
    1.18 -SERVER_INTERFACES_CC		= pager_object
    1.19 -
    1.20 -# Generated and plain source files.
    1.21 -
    1.22 -SERVER_INTERFACES_SRC_CC	= $(call interfaces_to_server_cc,$(SERVER_INTERFACES_CC))
    1.23 -
    1.24  # Normal source files.
    1.25  
    1.26 -PLAIN_SRC_CC			= region_mapper.cc
    1.27 -SRC_CC				= $(PLAIN_SRC_CC) $(SERVER_INTERFACES_SRC_CC)
    1.28 +SRC_CC			= region_mapper.cc
    1.29  
    1.30  REQUIRES_LIBS	= libc libstdc++ libexec libipc
    1.31  PRIVATE_INCDIR	= $(IDL_BUILD_DIR) $(IDL_EXPORT_DIR)
    1.32  
    1.33  include $(L4DIR)/mk/prog.mk
    1.34 -include $(IDL_MK_DIR)/interface_rules.mk
    1.35 -
    1.36 -$(PLAIN_SRC_CC): $(SERVER_INTERFACES_SRC_CC)