From d20566a44ee91991758c571b6e48c782d280aa08 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Mon, 6 Apr 2009 11:23:21 +0000 Subject: [PATCH] Make make dist happy Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3339 --- src/hardware/Makefile.am | 2 +- src/hardware/adlib.h | 24 ++++++++++++++++++++++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/src/hardware/Makefile.am b/src/hardware/Makefile.am index 7a9f7bf6..2967ab71 100644 --- a/src/hardware/Makefile.am +++ b/src/hardware/Makefile.am @@ -2,7 +2,7 @@ AM_CPPFLAGS = -I$(top_srcdir)/include SUBDIRS = serialport -EXTRA_DIST = fmopl.c fmopl.h ymf262.h ymf262.c +EXTRA_DIST = fmopl.c fmopl.h ymf262.h ymf262.c adlib.h noinst_LIBRARIES = libhardware.a diff --git a/src/hardware/adlib.h b/src/hardware/adlib.h index b8a0af95..dd029250 100644 --- a/src/hardware/adlib.h +++ b/src/hardware/adlib.h @@ -1,3 +1,23 @@ +/* + * Copyright (C) 2002-2009 The DOSBox Team + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +/* $Id: adlib.h,v 1.2 2009-04-06 11:23:21 qbix79 Exp $ */ + #ifndef DOSBOX_ADLIB_H #define DOSBOX_ADLIB_H @@ -67,7 +87,7 @@ struct Chip { typedef enum { MODE_OPL2, MODE_DUALOPL2, - MODE_OPL3, + MODE_OPL3 } Mode; class Handler { @@ -116,6 +136,6 @@ public: }; -}; //Adlib namespace +} //Adlib namespace #endif