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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# vim: set noet ts=8 sw=8 sts=8:
commondir = $(VICE_DATADIR)/common
gtk3_hotkeys = gtk3-hotkeys-cartridge.vhk \
gtk3-hotkeys-cartridge-mac.vhk \
gtk3-hotkeys-debug.vhk \
gtk3-hotkeys-debug-mac.vhk \
gtk3-hotkeys-drive.vhk \
gtk3-hotkeys-drive-mac.vhk \
gtk3-hotkeys-datasette1.vhk \
gtk3-hotkeys-datasette1-mac.vhk \
gtk3-hotkeys-datasette2.vhk \
gtk3-hotkeys-datasette2-mac.vhk \
gtk3-hotkeys-fliplist.vhk \
gtk3-hotkeys-fliplist-mac.vhk \
gtk3-hotkeys-help.vhk \
gtk3-hotkeys-help-mac.vhk \
gtk3-hotkeys-settings.vhk \
gtk3-hotkeys-settings-mac.vhk \
gtk3-hotkeys-snapshot.vhk \
gtk3-hotkeys-snapshot-mac.vhk
common_DATA = CBM_Logo.svg \
CBM.ttf \
icon1024x1024.png \
Icon-128@2x.png \
vice-logo-black.svg \
C128_16.png \
C128_24.png \
C128_32.png \
C128_48.png \
C128_64.png \
C128_256.png \
C128_1024.svg \
C64_16.png \
C64_24.png \
C64_32.png \
C64_48.png \
C64_64.png \
C64_256.png \
C64_1024.svg \
CBM2_16.png \
CBM2_24.png \
CBM2_32.png \
CBM2_48.png \
CBM2_64.png \
CBM2_256.png \
CBM2_1024.svg \
DTV_16.png \
DTV_24.png \
DTV_32.png \
DTV_48.png \
DTV_64.png \
DTV_256.png \
DTV_1024.svg \
PET_16.png \
PET_24.png \
PET_32.png \
PET_48.png \
PET_64.png \
PET_256.png \
PET_256.svg \
PET_1024.svg \
Plus4_16.png \
Plus4_24.png \
Plus4_32.png \
Plus4_48.png \
Plus4_64.png \
Plus4_256.png \
Plus4_1024.svg \
SCPU_16.png \
SCPU_24.png \
SCPU_32.png \
SCPU_48.png \
SCPU_64.png \
SCPU_256.png \
SCPU_1024.svg \
SID_16.png \
SID_24.png \
SID_32.png \
SID_48.png \
SID_64.png \
SID_256.png \
SID_1024.svg \
VIC20_16.png \
VIC20_24.png \
VIC20_32.png \
VIC20_48.png \
VIC20_64.png \
VIC20_256.png \
VIC20_1024.svg
EXTRA_DIST = $(common_DATA) \
x64.rc \
x64sc.rc \
x64dtv.rc \
xscpu64.rc \
x128.rc \
xvic.rc \
xplus4.rc \
xpet.rc \
xcbm2.rc \
xcbm5x0.rc \
vsid.rc \
vice.gresource.xml
#all: x64.res x64sc.res x64dtv.res xscpu64.res x128.res xvic.res xplus4.res xpet.res xcbm2.res xcbm5x0.res vsid.res $(GRESOURCE_TARGET)
#
if USE_GTK3UI
# Generate gresource binary file, required by all Gtk3 emus
GRESOURCE_TARGET = $(builddir)/vice.gresource
GRESOURCE_XML = $(srcdir)/vice.gresource.xml
$(GRESOURCE_TARGET): $(GRESOURCE_XML)
glib-compile-resources --sourcedir $(top_srcdir) $< --target $@
common_DATA += $(GRESOURCE_TARGET) \
$(gtk3_hotkeys)
# The *.ico and *.res files are currently generated in
# src/arch/gtk3/data/win32/Makefile.am, but the plan is to move that to here
# to also be able to generate the files for linking with SDL binaries on Win32
CLEANFILES = \
$(GRESOURCE_TARGET) \
x64.ico \
x64sc.ico \
x64dtv.ico \
xscpu64.ico \
x128.ico \
xvic.ico \
xplus4.ico \
xpet.ico \
xcbm2.ico \
xcbm5x0.ico \
vsid.ico \
x64.res \
x64sc.res \
x64dtv.res \
xscpu64.res \
x128.res \
xvic.res \
xplus4.res \
xpet.res \
xcbm2.res \
xcbm5x0.res \
vsid.res
else !USE_GTK3UI
EXTRA_DIST += $(gtk3_hotkeys)
endif !USE_GTK3UI
|