1#
2# Makefile for the embeded natfeat files.
3# currently used in hostfs and hostfs/metados Makefiles
4#
5# usage: copy this dir into a local folder and do
6#          make parentdir=..  (adjust the .. ?)
7#
8SHELL = /bin/sh
9SUBDIRS =
10
11srcdir = .
12top_srcdir = $(parentdir)/../..
13subdir = .natfeat
14
15default: all
16
17all-here: objs
18
19include $(top_srcdir)/CONFIGVARS
20include $(top_srcdir)/RULES
21include $(top_srcdir)/PHONY
22
23# default definitions
24OBJS = $(COBJS:.c=.o) $(SOBJS:%.S=%.o)
25
26objs: $(OBJS)
27
28include $(top_srcdir)/DEPENDENCIES
29