Makefile.in 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. ### @configure_input@
  2. ## Copyright 1985, 1986, 1987 by the Massachusetts Institute of Technology
  3. ## Permission to use, copy, modify, and distribute this
  4. ## software and its documentation for any purpose and without
  5. ## fee is hereby granted, provided that the above copyright
  6. ## notice appear in all copies and that both that copyright
  7. ## notice and this permission notice appear in supporting
  8. ## documentation, and that the name of M.I.T. not be used in
  9. ## advertising or publicity pertaining to distribution of the
  10. ## software without specific, written prior permission.
  11. ## M.I.T. makes no representations about the suitability of
  12. ## this software for any purpose. It is provided "as is"
  13. ## without express or implied warranty.
  14. ## Copyright (C) 2001-2016 Free Software Foundation, Inc.
  15. ## This program is free software: you can redistribute it and/or modify
  16. ## it under the terms of the GNU General Public License as published by
  17. ## the Free Software Foundation, either version 3 of the License, or
  18. ## (at your option) any later version.
  19. ## This program is distributed in the hope that it will be useful,
  20. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. ## GNU General Public License for more details.
  23. ## You should have received a copy of the GNU General Public License
  24. ## along with this program. If not, see <http://www.gnu.org/licenses/>.
  25. ### Commentary:
  26. ## To the best of our knowledge, this code was originally based on the
  27. ## X11 oldXMenu Makefile, which was automatically generated from the
  28. ## X11 oldXMenu Imakefile. There was no explicit copyright information
  29. ## in the Imakefile, therefore we have added the same MIT license as
  30. ## used by the rest of the oldXMenu code.
  31. ### Code:
  32. srcdir=@srcdir@
  33. # MinGW CPPFLAGS may use this.
  34. abs_top_srcdir=@abs_top_srcdir@
  35. VPATH=@srcdir@
  36. C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
  37. C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
  38. C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
  39. PROFILING_CFLAGS = @PROFILING_CFLAGS@
  40. WARN_CFLAGS = @WARN_CFLAGS@
  41. WERROR_CFLAGS = @WERROR_CFLAGS@
  42. EXTRA=insque.o
  43. CC=@CC@
  44. CFLAGS=@CFLAGS@
  45. CPPFLAGS = @CPPFLAGS@
  46. RM = rm -f
  47. RANLIB = @RANLIB@
  48. AR = @AR@
  49. ARFLAGS = @ARFLAGS@
  50. MKDIR_P = @MKDIR_P@
  51. EXEEXT = @EXEEXT@
  52. OBJS = Activate.o \
  53. AddPane.o \
  54. AddSel.o \
  55. ChgPane.o \
  56. ChgSel.o \
  57. Create.o \
  58. DelPane.o \
  59. DelSel.o \
  60. Destroy.o \
  61. Error.o \
  62. EvHand.o \
  63. FindPane.o \
  64. FindSel.o \
  65. InsPane.o \
  66. InsSel.o \
  67. Internal.o \
  68. Locate.o \
  69. Post.o \
  70. Recomp.o \
  71. SetAEQ.o \
  72. SetFrz.o \
  73. SetPane.o \
  74. SetSel.o \
  75. XDelAssoc.o XLookAssoc.o XCrAssoc.o XDestAssoc.o XMakeAssoc.o
  76. all: libXMenu11.a
  77. .PHONY: all
  78. # 'make' verbosity.
  79. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  80. AM_V_CC = $(am__v_CC_@AM_V@)
  81. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  82. am__v_CC_0 = @echo " CC " $@;
  83. am__v_CC_1 =
  84. AM_V_GEN = $(am__v_GEN_@AM_V@)
  85. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  86. am__v_GEN_0 = @echo " GEN " $@;
  87. am__v_GEN_1 =
  88. AM_V_at = $(am__v_at_@AM_V@)
  89. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  90. am__v_at_0 = @
  91. am__v_at_1 =
  92. DEPDIR = deps
  93. AUTO_DEPEND = @AUTO_DEPEND@
  94. ifeq ($(AUTO_DEPEND),yes)
  95. DEPFLAGS = -MMD -MF ${DEPDIR}/$*.d -MP
  96. MKDEPDIR = ${MKDIR_P} ${DEPDIR}
  97. else
  98. DEPFLAGS =
  99. MKDEPDIR = :
  100. endif
  101. ALL_CFLAGS=$(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) \
  102. $(C_SWITCH_X_SITE) $(DEPFLAGS) \
  103. $(WARN_CFLAGS) $(WERROR_CFLAGS) ${PROFILING_CFLAGS} \
  104. $(CPPFLAGS) $(CFLAGS) -DEMACS_BITMAP_FILES \
  105. -I../src -I../lib -I${srcdir} -I${srcdir}/../src -I${srcdir}/../lib
  106. .c.o:
  107. @$(MKDEPDIR)
  108. $(AM_V_CC)$(CC) -c ${ALL_CFLAGS} $<
  109. libXMenu11.a: $(OBJS) $(EXTRA)
  110. $(AM_V_GEN)$(RM) $@
  111. $(AM_V_at)$(AR) $(ARFLAGS) $@ $(OBJS) $(EXTRA)
  112. $(AM_V_at)$(RANLIB) $@
  113. ifeq ($(AUTO_DEPEND),yes)
  114. -include $(ALLOBJS:%.o=${DEPDIR}/%.d)
  115. else
  116. include $(srcdir)/deps.mk
  117. endif
  118. .PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean
  119. clean mostlyclean:
  120. rm -f libXMenu11.a *.o
  121. -rm -rf ${DEPDIR}
  122. bootstrap-clean maintainer-clean distclean: clean
  123. rm -f Makefile
  124. ETAGS = ../lib-src/etags${EXEEXT}
  125. ${ETAGS}: FORCE
  126. ${MAKE} -C ../lib-src $(notdir $@)
  127. tagsfiles = $(wildcard ${srcdir}/*.[ch])
  128. FORCE:
  129. .PHONY: tags FORCE
  130. tags: TAGS
  131. TAGS: ${ETAGS} ${tagsfiles}
  132. ${ETAGS} ${tagsfiles}
  133. ### Makefile.in ends here