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
|
--- Imakefile.orig Tue Feb 24 21:03:43 1998
+++ Imakefile Thu Mar 19 09:46:13 1998
@@ -76,28 +76,28 @@
NormalProgramTarget(display,display.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
NormalLintTarget($(LINTSRCS))
InstallProgram(display,$(LOCALDIR))
-InstallMultipleMan(display.1,$(LOCALMAN1))
+InstallMultipleManSuffix(display,$(LOCALMAN1),1)
NormalProgramTarget(montage,montage.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
InstallProgram(montage,$(LOCALDIR))
-InstallMultipleMan(montage.1,$(LOCALMAN1))
+InstallMultipleManSuffix(montage,$(LOCALMAN1),1)
NormalProgramTarget(import,import.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
InstallProgram(import,$(LOCALDIR))
-InstallMultipleMan(import.1,$(LOCALMAN1))
+InstallMultipleManSuffix(import,$(LOCALMAN1),1)
NormalProgramTarget(animate,animate.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
InstallProgram(animate,$(LOCALDIR))
-InstallMultipleMan(animate.1,$(LOCALMAN1))
+InstallMultipleManSuffix(animate,$(LOCALMAN1),1)
NormalProgramTarget(convert,convert.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
InstallProgram(convert,$(LOCALDIR))
-InstallMultipleMan(convert.1,$(LOCALMAN1))
+InstallMultipleManSuffix(convert,$(LOCALMAN1),1)
NormalProgramTarget(identify,identify.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
InstallProgram(identify,$(LOCALDIR))
-InstallMultipleMan(identify.1,$(LOCALMAN1))
+InstallMultipleManSuffix(identify,$(LOCALMAN1),1)
NormalProgramTarget(mogrify,mogrify.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
InstallProgram(mogrify,$(LOCALDIR))
-InstallMultipleMan(mogrify.1,$(LOCALMAN1))
+InstallMultipleManSuffix(mogrify,$(LOCALMAN1),1)
NormalProgramTarget(combine,combine.o,$(DEPLIBS),$(LOCAL_LIBRARIES),$(XLIB) -lm)
InstallProgram(combine,$(LOCALDIR))
-InstallMultipleMan(combine.1,$(LOCALMAN1))
-InstallMultipleMan(ImageMagick.1,$(LOCALMAN1))
-InstallMultipleMan(miff.4,$(LOCALMAN4))
-InstallMultipleMan(quantize.5,$(LOCALMAN5))
+InstallMultipleManSuffix(combine,$(LOCALMAN1),1)
+InstallMultipleManSuffix(ImageMagick,$(LOCALMAN1),1)
+InstallMultipleManSuffix(miff,$(LOCALMAN4),4)
+InstallMultipleManSuffix(quantize,$(LOCALMAN5),5)
|