-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
52 lines (41 loc) · 1.26 KB
/
Makefile
File metadata and controls
52 lines (41 loc) · 1.26 KB
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
# Top level GoodNeWS1.2 Makefile
# The environment variables 'GNHOME' and 'NEWSHOME'
# must be set for this installation to work. Do this with
# % setenv GNHOME <directory>
# % setenv NEWSHOME <directory>
# before you run make (or in your .login)
# check the parameters in the file 'Makefile.param'
# type 'make install' to make and install everything
# The manuals are in the directory "./man/{goodnews,hypernews}"
# they have their makefile in those directories
# For installation of dvinews and dvi2ps to be successful,
# you must already have TeX installed.
# Otherwise, remove dvinews and dvi2ps from
# the list of SUBDIRS in ./tools/Makefile
include ./Makefile.param
SUBDIRS = tools games fonts man
all:
if test -f .COMPRESSED ; then make uncompress ; fi
install: all
chmod a+w fonts
$(SUBDIRSINSTALL)
clean:
$(SUBDIRSCLEAN)
compress :
$(SUBDIRSCOMPRESS)
(cd bin.SUN3 ; $(MAKE) compress)
(cd img ; $(MAKE) compress)
(cd draw ; $(MAKE) compress)
(cd sys ; $(MAKE) compress)
$(COMPRESS) init.ps
$(COMPRESS) user.ps
touch .COMPRESSED
uncompress :
$(SUBDIRSUNCOMPRESS)
(cd bin.SUN3 ; $(MAKE) uncompress)
(cd img ; $(MAKE) uncompress)
(cd draw ; $(MAKE) uncompress)
(cd sys ; $(MAKE) uncompress)
-$(UNCOMPRESS) init.ps
-$(UNCOMPRESS) user.ps
rm -f .COMPRESSED