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