source: trunk/examples/zoo/sequence/examples/Makefile.in @ 1082

Last change on this file since 1082 was 1082, checked in by gah, 16 years ago

update makefile with mkdir_p

File size: 580 bytes
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9srcdir          = @srcdir@
10prefix          = @prefix@
11
12INSTALL         = @INSTALL@
13MKDIR_P         = @MKDIR_P@
14VPATH           = $(srcdir)
15RM              = rm -f
16
17FILES           = \
18                $(srcdir)/nanohub.xml \
19                $(srcdir)/team.xml
20
21destdir         = $(prefix)/examples/zoo/sequence/examples
22
23all:
24
25install:
26        $(MKDIR_P) $(destdir)
27        for i in $(FILES) ; do \
28          $(INSTALL) -m 444  $$i $(destdir) ; \
29        done
30
31clean:
32
33distclean:
34        $(RM) Makefile *~
Note: See TracBrowser for help on using the repository browser.