Whamcloud - gitweb
* 1st attempt to prevent duplicate devices being started.
[fs/lustre-release.git] / lustre / osc / 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
8 MODULE = osc
9 modulefs_DATA = osc.o
10 EXTRA_PROGRAMS = osc
11
12 LINX= obd_pack.c ll_pack.c client.c
13 osc_SOURCES = osc_request.c $(LINX)
14
15 obd_pack.c: 
16         test -e obd_pack.c || ln -sf $(top_srcdir)/lib/obd_pack.c
17 ll_pack.c: 
18         test -e ll_pack.c || ln -sf $(top_srcdir)/lib/ll_pack.c
19 client.c: 
20         test -e client.c || ln -sf $(top_srcdir)/lib/client.c
21
22 dist-hook:
23         list='$(LINX)'; for f in $$list; do rm -f $(distdir)/$$f; done
24
25 include $(top_srcdir)/Rules