blob: 8124326e5c8216ec2e173e1bebf192737a066682 (
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
|
## 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/backend.c \
runtime/vectors.c
|