deps.mk 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ### deps.mk --- oldXMenu/Makefile fragment for GNU Emacs
  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. ## This file is included in oldXMenu/Makefile if AUTO_DEPEND=no.
  27. ## It defines static dependencies between the various source files.
  28. ### Code:
  29. Activate.o: Activate.c XMenuInt.h XMenu.h X10.h
  30. AddPane.o: AddPane.c XMenuInt.h XMenu.h X10.h
  31. AddSel.o: AddSel.c XMenuInt.h XMenu.h X10.h
  32. ChgPane.o: ChgPane.c XMenuInt.h XMenu.h X10.h
  33. ChgSel.o: ChgSel.c XMenuInt.h XMenu.h X10.h
  34. Create.o: Create.c XMenuInt.h XMenu.h X10.h
  35. DelPane.o: DelPane.c XMenuInt.h XMenu.h X10.h
  36. DelSel.o: DelSel.c XMenuInt.h XMenu.h X10.h
  37. Destroy.o: Destroy.c XMenuInt.h XMenu.h X10.h
  38. Error.o: Error.c XMenuInt.h XMenu.h X10.h
  39. EvHand.o: EvHand.c XMenuInt.h XMenu.h X10.h
  40. FindPane.o: FindPane.c XMenuInt.h XMenu.h X10.h
  41. FindSel.o: FindSel.c XMenuInt.h XMenu.h X10.h
  42. InsPane.o: InsPane.c XMenuInt.h XMenu.h X10.h
  43. InsSel.o: InsSel.c XMenuInt.h XMenu.h X10.h
  44. Internal.o: Internal.c XMenuInt.h XMenu.h X10.h
  45. Locate.o: Locate.c XMenuInt.h XMenu.h X10.h
  46. Post.o: Post.c XMenuInt.h XMenu.h X10.h
  47. Recomp.o: Recomp.c XMenuInt.h XMenu.h X10.h
  48. SetAEQ.o: SetAEQ.c XMenuInt.h XMenu.h X10.h
  49. SetFrz.o: SetFrz.c XMenuInt.h XMenu.h X10.h
  50. SetPane.o: SetPane.c XMenuInt.h XMenu.h X10.h
  51. SetSel.o: SetSel.c XMenuInt.h XMenu.h X10.h
  52. XDelAssoc.o: XDelAssoc.c X10.h
  53. XLookAssoc.o: XLookAssoc.c X10.h
  54. XCrAssoc.o: XCrAssoc.c X10.h
  55. XDestAssoc.o: XDestAssoc.c X10.h
  56. XMakeAssoc.o: XMakeAssoc.c X10.h
  57. insque.o: insque.c
  58. ${OBJS}: ../src/config.h
  59. ### deps.mk ends here