blob: 5582456a1ef92ce2d49b02c6f13c20720c342e43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
AUTOMAKE_OPTIONS = subdir-objects
MAP_SRC = map/dummy.c \
map/dummy.h \
map/init.c \
map/script.c \
map/script.h
lib_LTLIBRARIES = libevol_map.la
libevol_map_la_SOURCES = ${MAP_SRC}
libevol_map_la_LDFLAGS = -avoid-version
libevol_map_la_CFLAGS = -pipe -ffast-math -Wall -Wextra -Wno-sign-compare
all-local: libevol_map.la
cp .libs/*.so ../../../plugins
|