diff options
author | notaz | 2012-12-02 02:43:40 +0200 |
---|---|---|
committer | notaz | 2012-12-02 03:02:51 +0200 |
commit | a1a232ad65a5c15314cbfe753f734a0a3ad6cef5 (patch) | |
tree | a355bc7e46c9577f358281259e32024100ac6d6a /Makefile | |
parent | 89f33b734d7d540c7fa26f6556ef9ec49eb3008a (diff) | |
download | pcsx_rearmed-a1a232ad65a5c15314cbfe753f734a0a3ad6cef5.tar.gz pcsx_rearmed-a1a232ad65a5c15314cbfe753f734a0a3ad6cef5.tar.bz2 pcsx_rearmed-a1a232ad65a5c15314cbfe753f734a0a3ad6cef5.zip |
frontend: fix clean libretro build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -192,7 +192,8 @@ endif OBJS += frontend/main.o frontend/plugin.o -frontend/menu.o frontend/main.o frontend/plat_sdl.o: frontend/revision.h +frontend/menu.o frontend/main.o: frontend/revision.h +frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h frontend/libpicofe/%.c: @echo "libpicofe module is missing, please run:" @@ -217,7 +218,7 @@ $(TARGET): $(OBJS) $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) -Wl,-Map=$@.map clean: $(PLAT_CLEAN) clean_plugins - $(RM) $(TARGET) $(OBJS) $(TARGET).map + $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h ifneq ($(PLUGINS),) plugins_: $(PLUGINS) |