Fixed a few new paths missed in previous commits.

This commit is contained in:
Stephen Anthony 2022-08-18 19:15:28 -02:30
parent 7f7079e0e9
commit 7c58ea2a61
3 changed files with 11 additions and 11 deletions

View File

@ -321,7 +321,7 @@ install: all
$(INSTALL) -d "$(DESTDIR)$(DOCDIR)/graphics"
$(INSTALL) -c -m 644 $(wildcard $(srcdir)/docs/graphics/*.png) "$(DESTDIR)$(DOCDIR)/graphics"
$(INSTALL) -d "$(DESTDIR)$(DATADIR)/applications"
$(INSTALL) -c -m 644 "$(srcdir)/src/unix/stella.desktop" "$(DESTDIR)$(DATADIR)/applications"
$(INSTALL) -c -m 644 "$(srcdir)/src/os/unix/stella.desktop" "$(DESTDIR)$(DATADIR)/applications"
$(INSTALL) -d "$(DESTDIR)$(DATADIR)/icons/hicolor/16x16/apps"
$(INSTALL) -d "$(DESTDIR)$(DATADIR)/icons/hicolor/22x22/apps"
$(INSTALL) -d "$(DESTDIR)$(DATADIR)/icons/hicolor/24x24/apps"
@ -357,7 +357,7 @@ src/emucore/M6502.ins: src/emucore/M6502.m4
m4 src/emucore/M6502.m4 > src/emucore/M6502.ins
# Special rule for windows icon stuff (there's probably a better way to do this ...)
src/windows/stella_icon.o: src/windows/stella.ico src/windows/stella.rc
windres --include-dir src/windows src/windows/stella.rc src/windows/stella_icon.o
src/os/windows/stella_icon.o: src/os/windows/stella.ico src/os/windows/stella.rc
windres --include-dir src/os/windows src/os/windows/stella.rc src/os/windows/stella_icon.o
.PHONY: deb bundle test install uninstall

8
debian/copyright vendored
View File

@ -73,7 +73,7 @@ License: RSA
These notices must be retained in any copies of any part of this
documentation and/or software.
Files: src/libpng/*
Files: src/lib/libpng/*
Copyright: 1995-1996 Guy Eric Schalnat, Group 42, Inc.
1996-1997 Andreas Dilger
1998-2013 Glenn Randers-Pehrson
@ -112,7 +112,7 @@ License: libpng
risk of satisfactory quality, performance, accuracy, and effort is
with the user.
Files: src/libretro/libretro.h
Files: src/os/libretro/libretro.h
Copyright: 2010-2017 The RetroArch team
License: MIT
Permission is hereby granted, free of charge, to any person obtaining
@ -135,7 +135,7 @@ License: MIT
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Files: src/macos/*
Files: src/os/macos/*
Copyright: 2005-2006 Mark Grebe
License: GPL-2+
@ -164,7 +164,7 @@ License: GPL-2
License version 2 can be found in
`/usr/share/common-licenses/GPL-2'.
Files: src/zlib/*
Files: src/lib/zlib/*
Copyright: 1995-2012, 2016 Jean-loup Gailly and Mark Adler
License: zlib
This software is provided 'as-is', without any express or implied

View File

@ -1,11 +1,11 @@
MODULE := src/unix/r77
MODULE := src/os/unix/r77
MODULE_OBJS := \
src/unix/r77/OSystemR77.o \
src/unix/r77/SettingsR77.o
src/os/unix/r77/OSystemR77.o \
src/os/unix/r77/SettingsR77.o
MODULE_DIRS += \
src/unix/r77
src/os/unix/r77
# Include common rules
include $(srcdir)/common.rules