blob: 9dc3b2f8eb93b3f65f15149788e3d34278bab381 (
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
28
29
30
31
32
33
34
35
36
|
noinst_LTLIBRARIES = libarchoperands.la libarchoperandsui.la
# libarchoperands_la_SOURCES = \
# feeder-int.h \
# feeder.h feeder.c \
# proxy-int.h \
# proxy.h proxy.c \
# rename-int.h \
# rename.h rename.c \
# target-int.h \
# target.h target.c \
# targetable-int.h \
# targetable.h targetable.c
libarchoperands_la_SOURCES = \
immediate-int.h \
immediate.h immediate.c \
known-int.h \
known.h known.c \
register-int.h \
register.h register.c
libarchoperands_la_CFLAGS = $(TOOLKIT_CFLAGS)
libarchoperandsui_la_SOURCES = \
immediate-ui.h immediate-ui.c \
known-ui.h known-ui.c \
register-ui.h register-ui.c
libarchoperandsui_la_CFLAGS = $(TOOLKIT_CFLAGS) $(LIBGTK4_CFLAGS)
devdir = $(includedir)/chrysalide/$(subdir:src/%=core/%)
dev_HEADERS = $(libarchoperands_la_SOURCES:%c=) $(libarchoperandsui_la_SOURCES:%c=)
|