17f33912d7
PR: 4183
11 lines
279 B
Makefile
11 lines
279 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
bin_PROGRAMS = dc
|
|
|
|
dc_SOURCES = dc.c misc.c eval.c stack.c array.c numeric.c string.c
|
|
noinst_HEADERS = dc.h dc-proto.h dc-regdef.h
|
|
|
|
INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../h
|
|
LDADD = ../lib/libbc.a
|
|
|
|
$(PROGRAMS): $(LDADD)
|