~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

Viewing changes to src/arch/unix/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        @FFMPEG_INCLUDES@ \
28
28
        -I$(top_builddir)/src \
29
29
        -I$(top_srcdir)/src/drive \
 
30
        -I$(top_srcdir)/src/rs232drv \
30
31
        -I$(top_srcdir)/src/c64 \
 
32
        -I$(top_srcdir)/src/c64dtv \
31
33
        -I$(top_srcdir)/src/c128 \
32
34
        -I$(top_srcdir)/src/vic20 \
33
35
        -I$(top_srcdir)/src/pet \
53
55
        joy.h \
54
56
        joy_usb.c \
55
57
        kbd.h \
 
58
        mididrv.c \
56
59
        mousedrv.c \
57
60
        mousedrv.h \
58
61
        openGL_sync.h \
66
69
        uimenu.h \
67
70
        unixmain.c \
68
71
        videoarch.h \
 
72
        vmstermios.h \
69
73
        vsyncarch.c \
70
74
        vsiduiunix.h
71
75
 
72
76
bin_SCRIPTS = vsid
73
77
 
74
78
EXTRA_DIST = \
 
79
        hpux/getdate.pl \
 
80
        hpux/getnow.pl \
 
81
        hpux/make-bindist.sh \
75
82
        minix/minix-ar.sh \
76
83
        minix/descr \
77
 
        qnx/getlibs.c \
78
 
        qnx/getsize.c \
79
 
        qnx/make-bindist.sh \
80
 
        solaris/convertprototype.c \
81
 
        solaris/make-bindist.sh \
 
84
        qnx4/install_msg \
 
85
        qnx4/make-bindist.sh \
 
86
        qnx6/getlibs.c \
 
87
        qnx6/getsize.c \
 
88
        qnx6/make-bindist.sh \
 
89
        sco_sol/convertprototype.c \
 
90
        sco_sol/make-bindist.sh \
 
91
        skyos/icons/x64.ico \
 
92
        skyos/icons/x64dtv.ico \
 
93
        skyos/icons/x128.ico \
 
94
        skyos/icons/xcbm2.ico \
 
95
        skyos/icons/xpet.ico \
 
96
        skyos/icons/xplus4.ico \
 
97
        skyos/icons/xvic.ico \
 
98
        skyos/make-bindist.sh \
 
99
        vms/config.h \
82
100
        vsid
83
101
 
84
102
.PHONY: x11
96
114
.PHONY: macosx
97
115
macosx:
98
116
        (cd macosx; $(MAKE))
99