summaryrefslogtreecommitdiff
path: root/libgpython/Makefile.am
blob: 9bac3e82101e74607e4dd93daaa9fe094e9ca251 (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
## Process this file with automake to produce Makefile.in

lib_LTLIBRARIES = libgpython.la

AM_CPPFLAGS = -I$(top_srcdir)/include
AM_YFLAGS = -d --verbose

library_includedir=$(includedir)/gpython
library_include_HEADERS = \
include/gpython/gpython.h \
include/gpython/vectors.h \
include/gpython/garbage.h \
include/gpython/objects.h

libgpython_la_CFLAGS = -DPYHON -DSHARED
libgpython_la_LDFLAGS = -release 0.0.1
libgpython_la_SOURCES = \
runtime/obj-boolean.c \
runtime/obj-string.c \
runtime/obj-float.c \
runtime/obj-list.c \
runtime/obj-integer.c \
runtime/py-runtime.c \
runtime/py-garbage.c \
runtime/py-utils.c \
runtime/backend.c \
runtime/vectors.c