1
0
Fork 0

Make make dist happy

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3339
This commit is contained in:
Peter Veenstra 2009-04-06 11:23:21 +00:00
parent fd2bfad813
commit d20566a44e
2 changed files with 23 additions and 3 deletions

View file

@ -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

View file

@ -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