16 lines
490 B
Python
16 lines
490 B
Python
# -*- python -*-
|
|
|
|
##############
|
|
# Nes program
|
|
#
|
|
#
|
|
|
|
Program('nes', ['../src/main.c', '../src/debug.c', '../src/cpu/cpu6502.c',
|
|
'../src/emulator/emulator.c', '../src/emulator/memory.c',
|
|
'../src/emulator/ppu.c', '../src/emulator/apu.c',
|
|
'../src/emulator/debugger.c', '../src/emulator/paddle.c'],
|
|
CPPPATH=['../src', '../src/cpu', '../src/emulator'],
|
|
CCFLAGS='-g -Wall `sdl-config --cflags`',
|
|
LIBS=['SDL'],
|
|
LIBPATH='/usr/lib')
|