1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
############################################################
#
# $Id : Makefile.in 4.04 1997/07/10 $
#
# xlockmore Makefile.in for autoconf (UNIX/VMS X11 support)
############################################################
SUBDIRS = xlock modes/glx modes xmlock xalock
MAKE_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; $(MAKE) $@ ) ; done
# convenient not to use configure just to clean
MAKEIN_SUBDIR = for dir in $(SUBDIRS) ; do ( cd $$dir ; $(MAKE) -f Makefile.in $@ ) ; done
all :
@$(MAKE_SUBDIR)
# this tells GNU make not to export variables into the environment
# But other makes do not understand its significance, so it must
# not be the first target in the file. So it is here, before
# any variables are created, but after the default target
.NOEXPORT :
SHELL = /bin/sh
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@/
TAR = tar
RM = rm -f
VER = xlockmore
DISTVER = xlockmore-4.04
install :
@$(MAKE_SUBDIR)
install-program :
@$(MAKE_SUBDIR)
install-man :
@$(MAKE_SUBDIR)
install-ad :
@$(MAKE_SUBDIR)
uninstall :
@$(MAKE_SUBDIR)
uninstall-program :
@$(MAKE_SUBDIR)
uninstall-man :
@$(MAKE_SUBDIR)
depend :
@$(MAKE_SUBDIR)
lint :
@$(MAKE_SUBDIR)
xrdb :
@$(MAKE_SUBDIR)
man :
@$(MAKE_SUBDIR)
html :
@$(MAKE_SUBDIR)
hlp :
@$(MAKE_SUBDIR)
clean :
$(RM) core *~ *% *.bak *.orig make.log MakeOut
@$(MAKEIN_SUBDIR)
distclean : clean
$(RM) -f Makefile config.status config.cache config.log config.h
@$(MAKEIN_SUBDIR)
Makefile : Makefile.in config.status
$(SHELL) config.status
config.status : configure
$(SHELL) config.status --recheck
#configure : configure.in
# enable this rule if you want autoconf to be executed automatically when
# configure.in is changed. This is commented out, since patching might give
# configure.in a newer timestamp than configure and not everybody has autoconf
# cd $(srcdir); autoconf
clean.all : distclean
tar : distclean
cd .. ; $(TAR) cvf $(VER).tar $(VER)/*
compress : tar
cd .. ; compress -f $(VER).tar
gzip : tar
cd .. ; gzip -best -f $(VER).tar
dist : gzip
tgz : tar
cd .. ; gzip -best -c $(VER).tar > `echo $(VER) | cut -c1-8`.tgz ; \
$(RM) $(VER).tar
read :
more README
|