Make.common.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # autoconf/Make.common.in -*- Makefile -*-
  2. # release date (man), LSM date, version number/name, current maintainer
  3. DATE=@DATE@
  4. LSMDATE=@LSMDATE@
  5. VERSION=@VERSION@
  6. VERNAME=rxvt-$(VERSION)#
  7. MAINT=Geoff Wing#
  8. MAINTEMAIL=<gcw@rxvt.org>#
  9. WEBMAINT=Oezguer Kesim#
  10. WEBMAINTEMAIL=<oec@rxvt.org>#
  11. WEBPAGE=<http://www.rxvt.org/>#
  12. FTPSITENAME=ftp.rxvt.org#
  13. FTPSITEDIR=/pub/rxvt#
  14. #-------------------------------------------------------------------------
  15. RXVTNAME=@RXVTNAME@
  16. SHELL = /bin/sh
  17. # This variable makes it possible to move the installation root to another
  18. # directory. This is useful when you're creating a binary distribution
  19. # If empty, normal root will be used.
  20. # You can run eg. 'make install DESTDIR=/packages/rxvt-xx' to accomplish
  21. # that.
  22. # DESTDIR = /usr/local/X11/$(VERNAME)
  23. # Installation target directories & other installation stuff
  24. prefix = @prefix@
  25. exec_prefix = @exec_prefix@
  26. bindir = @bindir@
  27. libdir = @libdir@
  28. includedir = @includedir@
  29. mandir = @mandir@/man1
  30. manext = 1
  31. # Tools & program stuff
  32. CC = @CC@
  33. CPP = @CPP@
  34. MV = @MV@
  35. RM = @RM@
  36. RMF = @RM@ -f
  37. CP = @CP@
  38. LN = @LN@
  39. SED = @SED@
  40. AWK = @AWK@
  41. ECHO = @ECHO@
  42. CMP = @CMP@
  43. TBL = @TBL@
  44. INSTALL = @INSTALL@
  45. INSTALL_PROGRAM = @INSTALL@ -m 755
  46. INSTALL_DATA = @INSTALL@ -m 644
  47. # Flags & libs
  48. # add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program
  49. CFLAGS = @CFLAGS@
  50. CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
  51. LDFLAGS = @LDFLAGS@
  52. DEFS = @DEFS@
  53. LIBS = @LIBS@
  54. DINCLUDE = @DINCLUDE@
  55. DLIB = @DLIB@
  56. # X Include directory
  57. XINC = @X_CFLAGS@ @XPM_CFLAGS@
  58. # extra libraries needed by X on some systems, X library location
  59. XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
  60. LIBTOOL = @LIBTOOL@
  61. COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
  62. LINK = $(CC) $(CFLAGS) $(LDFLAGS)
  63. # End of common section of the Makefile
  64. #-------------------------------------------------------------------------