diff options
author | notaz | 2009-06-05 17:36:30 +0300 |
---|---|---|
committer | notaz | 2009-06-05 17:36:30 +0300 |
commit | 788343bb4cbc9ae133ac748f9ce59731bad67f22 (patch) | |
tree | b15bbf5f0c7c88d187124dd0096f2bd70023dd53 /gp2x/Makefile | |
parent | 4cdfc0bc7b3dd2051b8027da4e2f35bbb9897307 (diff) | |
download | picogpsp-788343bb4cbc9ae133ac748f9ce59731bad67f22.tar.gz picogpsp-788343bb4cbc9ae133ac748f9ce59731bad67f22.tar.bz2 picogpsp-788343bb4cbc9ae133ac748f9ce59731bad67f22.zip |
added upscaler
Diffstat (limited to 'gp2x/Makefile')
-rw-r--r-- | gp2x/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gp2x/Makefile b/gp2x/Makefile index be06a86..cf0b3a5 100644 --- a/gp2x/Makefile +++ b/gp2x/Makefile @@ -16,7 +16,7 @@ endif OBJS = main.o cpu.o memory.u video.o input.o sound.o gp2x.o gui.o \ cheats.o zip.o cpu_threaded.z arm_stub.o video_blend.o \ - flush_cache.o warm.o sys_cacheflush.o + warm.o sys_cacheflush.o upscale_aspect.o BIN = gpsp.gpe # Platform specific definitions @@ -57,6 +57,9 @@ LIBS += -ggdb %.o: %.S $(CC) $(ASFLAGS) $(INCLUDES) -c -o $@ $< +%.o: %.s + $(CC) $(ASFLAGS) $(INCLUDES) -c -o $@ $< + all: $(OBJS) $(CC) $(OBJS) $(LIBS) -o $(BIN) # $(STRIP) $(BIN) |