File: Makefile

package info (click to toggle)
aranym 1.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,488 kB
  • sloc: cpp: 178,117; ansic: 170,405; perl: 5,637; sh: 5,547; asm: 2,282; makefile: 1,324; objc: 218
file content (28 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (2)
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