Cross Reference: /solaris-desktop/Makefile
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
##
# Convenience Makefile.
#
# Usage :
#
# "make clean" : Clean up sun-po and manpages directories
# "make" : Build the po and manpage files
#
all: subdirectories
subdirectories:
$(MAKE) -C po-sun
$(MAKE) -C manpages
$(MAKE) -C manpages-roff
@echo
@echo "NOTE:"
@echo " This Makefile just builds its dependencies. It isn't meant to"
@echo " build the all packages in the repository."
@echo
clean:
$(MAKE) -C po-sun clean
$(MAKE) -C manpages clean
$(MAKE) -C manpages-roff clean