1
0
Fork 0

Changes to always include debug_win32.cpp in the make.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1070
This commit is contained in:
Sjoerd van der Berg 2003-06-16 12:29:43 +00:00
parent feee892489
commit 90140ef5fc
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,4 @@
AM_CPPFLAGS = -I$(top_srcdir)/include
EXTRA_DIST = debug_win32.cpp
noinst_LIBRARIES = libdebug.a
libdebug_a_SOURCES = debug.cpp debug_gui.cpp debug_disasm.cpp debug_inc.h disasm_tables.h
libdebug_a_SOURCES = debug.cpp debug_gui.cpp debug_disasm.cpp debug_inc.h disasm_tables.h debug_win32.cpp

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 2002 The DOSBox Team
* Copyright (C) 2002-2003 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
@ -16,6 +16,8 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef WIN32
#include <windows.h>
#include <stdio.h>
#include <stdarg.h>
@ -70,5 +72,4 @@ void WIN32_Console() {
}
#endif