1
2
3- x128: Bring either VDC or VICII display to front depending on 40/80 col key## Makefile.am for the native GTK3 version of `libarch.a'.
4
5if WIN32_COMPILE
6extra_includes = -I$(top_srcdir)/src/arch/mingw32-pcap/wpcap
7else
8extra_includes =
9endif
10
11SUBDIRS = data novte widgets
12
13AM_CPPFLAGS = \
14	@ARCH_INCLUDES@ \
15	$(extra_includes) \
16	-I$(top_builddir)/src \
17	-I$(top_srcdir)/src \
18	-I$(top_srcdir)/src/crtc \
19	-I$(top_srcdir)/src/drive \
20	-I$(top_srcdir)/src/joyport \
21	-I$(top_srcdir)/src/lib/p64 \
22	-I$(top_srcdir)/src/raster \
23	-I$(top_srcdir)/src/rs232drv \
24	-I$(top_srcdir)/src/sid \
25	-I$(top_srcdir)/src/vdc \
26	-I$(top_srcdir)/src/arch/gtk3/widgets \
27	-I$(top_srcdir)/src/arch/gtk3/widgets/base \
28	-I$(top_srcdir)/src/arch/gtk3/novte \
29	-I$(top_builddir)/src/arch/gtk3/novte \
30	-I$(top_srcdir)/src/c64 \
31	-I$(top_srcdir)/src/c64dtv \
32	-I$(top_srcdir)/src/c128 \
33	-I$(top_srcdir)/src/cbm2 \
34	-I$(top_srcdir)/src/pet \
35	-I$(top_srcdir)/src/plus4 \
36	-I$(top_srcdir)/src/scpu64 \
37	-I$(top_srcdir)/src/vic20 \
38	-I$(top_srcdir)/src/samplerdrv \
39	-I$(top_srcdir)/src/c64/cart \
40	-I$(top_srcdir)/src/imagecontents \
41	-I$(top_srcdir)/src/monitor \
42	-I$(top_srcdir)/src/tapeport \
43	-I$(top_srcdir)/src/hvsc
44
45
46noinst_LIBRARIES = libarch.a
47
48libarch_a_SOURCES = \
49	archdep.c \
50	blockdev.c \
51	c128ui.c \
52	c64dtvui.c \
53	c64scui.c \
54	c64ui.c \
55	cairo_renderer.c \
56	cbm2ui.c \
57	cbm5x0ui.c \
58	coproc.c \
59	dynlib.c \
60	fullscreen.c \
61	gtk3main.c \
62	joy-osx-hid.c \
63	joy-osx-hidmgr.c \
64	joy-osx-hidutil.c \
65	joy-osx.c \
66	joy-unix-usb.c \
67	joy-unix.c \
68	joy-win32-dinput-handle.c \
69	joy-win32.c \
70	kbd.c \
71	linenoise.c \
72	mousedrv.c \
73	opengl_renderer.c \
74	petui.c \
75	plus4ui.c \
76	quartz_renderer.c \
77	rawnetarch.c \
78	rs232dev.c \
79	scpu64ui.c \
80	signals.c \
81	ui.c \
82	uiabout.c \
83	uicart.c \
84	uicmdline.c \
85	uicommands.c \
86	uicompiletimefeatures.c \
87	uidata.c \
88	uidatasette.c \
89	uidebug.c \
90	uidiskattach.c \
91	uidiskcreate.c \
92	uiedit.c \
93	uifliplist.c \
94	uimachinemenu.c \
95	uimachinewindow.c \
96	uimedia.c \
97	uimenu.c \
98	uimon-fallback.c \
99	uimon.c \
100	uinetplay.c \
101	uinetplay_new.c \
102	uisettings.c \
103	uisidattach.c \
104	uismartattach.c \
105	uisnapshot.c \
106	uistatusbar.c \
107	uitapeattach.c \
108	uitapecreate.c \
109	uivideo.c \
110	uivsidmenu.c \
111	uivsidwindow.c \
112	vic20ui.c \
113	video.c \
114	vsidui.c \
115	vsyncarch.c
116
117EXTRA_DIST = \
118	archdep.h \
119	archdep_unix.c \
120	archdep_unix.h \
121	archdep_win32.c \
122	archdep_win32.h \
123	cairo_renderer.h \
124	coproc.h \
125	debug_gtk3.h \
126	dynlib-unix.c \
127	dynlib-win32.c \
128	joy-osx-hid.h \
129	joy-osx-hidlib.h \
130	joy-osx.h \
131	joy-unix.h \
132	joy-win32-dinput-handle.h \
133	joy-win32.h \
134	joy.h \
135	kbd.h \
136	linenoise.h \
137	make-bindist_osx.sh \
138	make-bindist_win32.sh \
139	mousedrv.h \
140	opengl_renderer.h \
141	quartz_renderer.h \
142	rawnetarch_unix.c \
143	rawnetarch_win32.c \
144	rs232-unix-dev.c \
145	rs232-win32-dev.c \
146	ui.h \
147	uiabout.h \
148	uicart.h \
149	uicmdline.h \
150	uicommands.h \
151	uicompiletimefeatures.h \
152	uidata.h \
153	uidatasette.h \
154	uidebug.h \
155	uidiskattach.h \
156	uidiskcreate.h \
157	uiedit.h \
158	uifliplist.h \
159	uimachinemenu.h \
160	uimachinewindow.h \
161	uimedia.h \
162	uimenu.h \
163	uimonarch.h \
164	uimon-fallback.h \
165	uinetplay.h \
166	uinetplay_new.h \
167	uisettings.h \
168	uisidattach.h \
169	uismartattach.h \
170	uisnapshot.h \
171	uistatusbar.h \
172	uitapeattach.h \
173	uitapecreate.h \
174	uivideo.h \
175	uivsidmenu.h \
176	uivsidwindow.h \
177	videoarch.h \
178	winjoy.h \
179	Info.plist \
180	Resources/VICE.icns \
181	vice-launcher.sh \
182	x11-launcher.sh
183