Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / misc / Makefile.msvc
blob3286fe2a0abe52203d4c54f5a9d22f1d84afd360
1 # -*- Makefile -*- for gettext-tools/misc
3 #### Start of system configuration section. ####
5 # Flags that can be set on the nmake command line:
6 #   PREFIX=Some\Directory   Base directory for installation
7 !if !defined(PREFIX)
8 PREFIX = c:\usr
9 !endif
11 # Directories used by "make install":
12 prefix = $(PREFIX)
13 exec_prefix = $(prefix)
14 datadir = $(prefix)\share
15 emacsdir = $(datadir)\emacs
16 lispdir = $(emacsdir)\site-lisp
18 LN = copy
19 RM = -del
21 # Programs used by "make install":
22 INSTALL = copy
23 INSTALL_PROGRAM = copy
24 INSTALL_DATA = copy
26 #### End of system configuration section. ####
28 SHELL = /bin/sh
30 all :
32 install : all force
33         -mkdir $(prefix)
34         -mkdir $(datadir)
35         -mkdir $(emacsdir)
36         -mkdir $(lispdir)
37         $(INSTALL_DATA) po-mode.el $(lispdir)\po-mode.el
38         $(INSTALL_DATA) po-compat.el $(lispdir)\po-compat.el
40 installdirs : force
41         -mkdir $(prefix)
42         -mkdir $(datadir)
43         -mkdir $(emacsdir)
44         -mkdir $(lispdir)
46 uninstall : force
47         $(RM) $(lispdir)\po-mode.el
48         $(RM) $(lispdir)\po-compat.el
50 check : all
52 mostlyclean : clean
54 clean : force
55         $(RM) core
57 distclean : clean
58         $(RM) Makefile
60 maintainer-clean : distclean
62 force :