aboutsummaryrefslogtreecommitdiff
path: root/src/util/dyn/Makefile.ov
blob: 8128312c39ae59193f0a21293b0c9ce9f72d3bad (plain)
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
29
30
31
32
33
34
35
# This file is part of libdyn.a, the C Dynamic Object library.  It
# contains the Imakefile.
#
# There are no restrictions on this code; however, if you make any
# changes, I request that you document them so that I do not get
# credit or blame for your modifications.
#
# Written by Barr3y Jaspan, Student Information Processing Board (SIPB)
# and MIT-Project Athena, 1989.

TOP	:= ../..
include $(TOP)/config.mk/template

SRCS	:= dyn_create.c dyn_put.c dyn_debug.c dyn_delete.c dyn_size.c \
	dyn_append.c dyn_realloc.c dyn_paranoid.c dyn_insert.c \
	dyn_initzero.c
OBJS	:= dyn_create.o dyn_put.o dyn_debug.o dyn_delete.o dyn_size.o \
	dyn_append.o dyn_realloc.o dyn_paranoid.o dyn_insert.o \
	dyn_initzero.o
HDRS	:= dyn.h # dynP.h

CFLAGS := $(CFLAGS) $(D_POSIX)

LIB	:= libdyn.a

expand StageLibrary
expand StageIncludes

# PROG	:= test
# OBJS	:= test.o
# LIBS	:= libdyn.a
# 
# expand Program
# 
expand Depend