mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-26 18:34:29 +02:00
Update to v106r84 release.
byuu says: Changelog: - fixed a few TLCS900H CPU and disassembler bugs - hooked up a basic Neo Geo Pocket emulator skeleton and memory map; can run a few instructions from the BIOS - emulated the flash memory used by Neo Geo Pocket games - added sourcery to the higan source archives - fixed ternary expressions in sfc/ppu-fast [hex_usr]
This commit is contained in:
26
sourcery/GNUmakefile
Normal file
26
sourcery/GNUmakefile
Normal file
@@ -0,0 +1,26 @@
|
||||
name := sourcery
|
||||
build := stable
|
||||
flags += -I..
|
||||
|
||||
nall.path := ../nall
|
||||
include $(nall.path)/GNUmakefile
|
||||
|
||||
objects := obj/sourcery.o
|
||||
|
||||
obj/sourcery.o: sourcery.cpp
|
||||
|
||||
all: $(objects)
|
||||
$(info Linking out/$(name) ...)
|
||||
+@$(compiler) -o out/$(name) $(objects) $(options)
|
||||
|
||||
verbose: nall.verbose all;
|
||||
|
||||
clean:
|
||||
$(call delete,obj/*)
|
||||
$(call delete,out/*)
|
||||
|
||||
install: all
|
||||
cp out/$(name) $(prefix)/bin/$(name)
|
||||
|
||||
uninstall:
|
||||
rm -f $(prefix)/bin/$(name)
|
Reference in New Issue
Block a user