mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
17f33912d7
PR: 4183
10 lines
279 B
Makefile
10 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)
|