# autoconf/Make.common.in -*- Makefile -*- # release date (man), LSM date, version number/name, current maintainer # $Id: Make.common.in,v 1.1.1.1 2001/03/11 07:50:04 sashav Exp $ DATE=06 September 01 LSMDATE=06Sep01 VERSION=0.4.2 VERNAME=aterm-$(VERSION)# MAINT=Sasha Vasko# MAINTEMAIL=# WEBMAINT=Sasha Vasko# WEBMAINTEMAIL=# WEBPAGE=# FTPSITENAME=ftp.afterstep.org# FTPSITEDIR=/apps/aterm# #------------------------------------------------------------------------- SHELL = /bin/sh # This variable makes it possible to move the installation root to another # directory. This is useful when you're creating a binary distribution # If empty, normal root will be used. # You can run eg. 'make install DESTDIR=/packages/rxvt-xx' to accomplish # that. # DESTDIR = /usr/local/X11/$(VERNAME) # Installation target directories & other installation stuff prefix = /usr/local exec_prefix = ${prefix} binprefix = manprefix = bindir = ${exec_prefix}/bin mandir = ${prefix}/man/man1 manext = 1 # Tools & program stuff CC = cc CPP = cc -E MV = /usr/local/bin/mv RM = /usr/local/bin/rm RMF = /usr/local/bin/rm -f CP = /usr/local/bin/cp SED = /usr/local/bin/sed INSTALL = /usr/bin/install -c -o root -g wheel INSTALL_PROGRAM = /usr/bin/install -c -o root -g wheel -s -m 755 INSTALL_DATA = /usr/bin/install -c -o root -g wheel -m 644 # Flags & libs # add -DBINDIR=\""$(bindir)/"\" to CPPFLAGS, if we need to spawn a program CFLAGS = -fno-common -I/usr/X11R6/include CPPFLAGS = LDFLAGS = DEFS = -DHAVE_CONFIG_H LIBS = -L/usr/X11R6/lib -lXpm -lX11 DINCLUDE = DLIB = # X Include directory XINC = -I/usr/X11R6/include # extra libraries needed by X on some systems, X library location XLIB = -L/usr/X11R6/lib -lSM -lICE -L/usr/X11R6/lib -lXpm -lX11 # End of common section of the Makefile #-------------------------------------------------------------------------