File: Makefile.os2

package info (click to toggle)
clisp 1%3A2.27-0.5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 49,860 kB
  • ctags: 20,752
  • sloc: ansic: 123,781; lisp: 67,533; asm: 19,633; xml: 11,766; sh: 9,788; fortran: 8,307; makefile: 3,570; objc: 2,481; perl: 1,744; java: 341; yacc: 318; sed: 117
file content (44 lines) | stat: -rw-r--r-- 803 bytes parent folder | download | duplicates (3)
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
# Makefile for libiconv/man, OS2/EMX specific
#
#	requires EMX/GCC development environment and
#	GNU futils installed
#
#	define EMXPATH=<your EMX path> on install/uninstall
#

#### Start of system configuration section. ####

# Directories used by "make install":
prefix = @prefix@
exec_prefix = $(prefix)
mandir = $(prefix)/man

#### End of system configuration section. ####

MAN1 = iconv.1
MAN3 = iconv.3 iconv_close.3 iconv_open.3

all :

install : force
	@for %i in ($(MAN1)) do cp -i %i $(mandir)/man1/%i
	@for %i in ($(MAN3)) do cp -i %i $(mandir)/man3/%i

installdirs :

uninstall : force
	@for %i in ($(MAN1)) do rm -i $(mandir)/man1/%i
	@for %i in ($(MAN3)) do rm -i $(mandir)/man3/%i

check :

mostlyclean :

clean :

distclean : force
	rm -f Makefile

maintainer-clean : distclean

force :