Whamcloud - gitweb
Tweak autogen.sh and Makefiles to be compatible with Automake 1.6.2.
[fs/lustre-release.git] / lustre / ost / Makefile.am
1 # Copyright (C) 2001  Cluster File Systems, Inc.
2 #
3 # This code is issued under the GNU General Public License.
4 # See the file COPYING in this distribution
5
6 DEFS= 
7 MODULE = ost
8 modulefs_DATA = ost.o
9 EXTRA_PROGRAMS = ost
10
11 LINX=page.c obd_pack.c l_net.c ll_pack.c
12 ll_pack.c: 
13         test -e ll_pack.c || ln -sf $(top_srcdir)/lib/ll_pack.c
14
15 obd_pack.c: 
16         test -e obd_pack.c || ln -sf $(top_srcdir)/lib/obd_pack.c
17
18 page.c:
19         test -e page.c || ln -sf $(top_srcdir)/lib/page.c
20
21 l_net.c:
22         test -e l_net.c || ln -sf $(top_srcdir)/lib/l_net.c
23
24 ost_SOURCES = $(LINX) ost_handler.c
25 dist-hook:
26         list='$(LINX)'; for f in $$list; do rm -f $(distdir)/$$f; done
27
28 include $(top_srcdir)/Rules
29