File: Makefile.am

package info (click to toggle)
bc 1.07.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 2,500 kB
  • sloc: ansic: 7,596; sh: 1,468; yacc: 1,110; lex: 342; makefile: 91
file content (14 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## 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

AM_CPPFLAGS = -I$(srcdir)/.. -I$(srcdir)/../h
LDADD = ../lib/libbc.a

MAINTAINERCLEANFILES = Makefile.in

AM_CFLAGS = @CFLAGS@

$(PROGRAMS): $(LDADD)