Add clean-objs target

This commit is contained in:
Twinaphex 2012-08-23 01:37:24 +02:00
parent 2bea974cc0
commit bd0bfbe488

View File

@ -188,9 +188,12 @@ else
$(CC) -o $(TARGET) $(fpic) $(LIBRETRO_OBJ) $(LIBRETRO_LIBS) $(SHARED)
endif
clean-objs:
rm -f $(LIBRETRO_OBJ)
clean:
rm -f $(LIBRETRO_OBJ)
rm -f $(TARGET)
.PHONY: clean
.PHONY: clean clean-objs