move nes into the sources/NES directory
This commit is contained in:
15
unix/SConstruct
Normal file
15
unix/SConstruct
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- 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')
|
||||
Reference in New Issue
Block a user