File: Makefile.am

package info (click to toggle)
vice 3.7.1%2Bdfsg1-2
  • links: PTS
  • area: contrib
  • in suites: bookworm
  • size: 49,876 kB
  • sloc: ansic: 431,530; cpp: 35,357; sh: 9,747; makefile: 7,010; perl: 1,822; yacc: 1,197; lex: 589; sed: 184; objc: 115; xml: 36
file content (121 lines) | stat: -rw-r--r-- 2,218 bytes parent folder | download
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
SUBDIRS = cart

AM_CPPFLAGS = \
	@VICE_CPPFLAGS@ \
	@ARCH_INCLUDES@ \
	-I$(top_builddir)/src \
	-I$(top_srcdir)/src \
	-I$(top_srcdir)/src/plus4/cart \
	-I$(top_srcdir)/src/core \
	-I$(top_srcdir)/src/datasette \
	-I$(top_srcdir)/src/drive \
	-I$(top_srcdir)/src/printerdrv \
	-I$(top_srcdir)/src/sid \
	-I$(top_srcdir)/src/tape \
	-I$(top_srcdir)/src/monitor \
	-I$(top_srcdir)/src/video \
	-I$(top_srcdir)/src/samplerdrv \
	-I$(top_srcdir)/src/lib/p64 \
	-I$(top_srcdir)/src/joyport \
	-I$(top_srcdir)/src/userport \
	-I$(top_srcdir)/src/raster \
	-I$(top_srcdir)/src/rs232drv \
	-I$(top_srcdir)/src/tapeport \
	-I$(top_srcdir)/src/core/rtc

AM_CFLAGS = @VICE_CFLAGS@

AM_CXXFLAGS = @VICE_CXXFLAGS@

AM_LDFLAGS = @VICE_LDFLAGS@


noinst_LIBRARIES = libplus4.a libplus4stubs.a

libplus4stubs_a_SOURCES = \
	plus4-stubs.c

libplus4_a_SOURCES = \
	digiblaster.c \
	digiblaster.h \
	plus4-cmdline-options.c \
	plus4-cmdline-options.h \
	plus4-resources.c \
	plus4-resources.h \
	plus4-sidcart.c \
	plus4-snapshot.c \
	plus4-snapshot.h \
	plus4.c \
	plus4.h \
	plus4acia.c \
	plus4acia.h \
	plus4bus.c \
	plus4cpu.c \
	plus4datasette.c \
	plus4drive.c \
	plus4iec.c \
	plus4iec.h \
	plus4io.c \
	plus4mem.c \
	plus4mem.h \
	plus4memcsory256k.c \
	plus4memcsory256k.h \
	plus4memhacks.c \
	plus4memhacks.h \
	plus4memhannes256k.c \
	plus4memhannes256k.h \
	plus4memlimit.c \
	plus4memlimit.h \
	plus4memrom.c \
	plus4memrom.h \
	plus4memsnapshot.c \
	plus4memsnapshot.h \
	plus4model.c \
	plus4model.h \
	plus4parallel.c \
	plus4parallel.h \
	plus4pio1.c \
	plus4pio1.h \
	plus4pio2.c \
	plus4pio2.h \
	plus4printer.c \
	plus4rom.c \
	plus4rom.h \
	plus4romset.c \
	plus4speech.c \
	plus4speech.h \
	plus4tcbm.c \
	plus4tcbm.h \
	plus4video.c \
	ted-badline.c \
	ted-badline.h \
	ted-cmdline-options.c \
	ted-cmdline-options.h \
	ted-color.c \
	ted-color.h \
	ted-draw.c \
	ted-draw.h \
	ted-fetch.c \
	ted-fetch.h \
	ted-irq.c \
	ted-irq.h \
	ted-mem.c \
	ted-mem.h \
	ted-resources.c \
	ted-resources.h \
	ted-snapshot.c \
	ted-snapshot.h \
	ted-sound.c \
	ted-sound.h \
	ted-timer.c \
	ted-timer.h \
	ted-timing.c \
	ted-timing.h \
	ted.c \
	ted.h \
	tedtypes.h

.PHONY: libplus4cart

libplus4cart:
	(cd cart; $(MAKE))