1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00
This commit is contained in:
Themaister 2010-08-19 20:29:32 +02:00
parent 9b9820e4c6
commit ff4869042b
2 changed files with 7 additions and 6 deletions

View File

@ -30,7 +30,7 @@ ifeq ($(BUILD_FILTER), 1)
OBJ += hqflt/grayscale.o
endif
CFLAGS = -Wall -O3 -march=native -std=gnu99
CFLAGS = -Wall -O0 -march=native -std=gnu99 -g
@ -51,7 +51,8 @@ uninstall: $(TARGET)
rm -rf $(PREFIX)/bin/$(TARGET)
clean:
rm -rf *.o hqflt/*.o
rm -rf $(TARGET)
rm -f *.o
rm -f hqflt/*.o
rm -f $(TARGET)
.PHONY: all install uninstall clean

View File

@ -2,10 +2,10 @@
BUILD_OPENGL = 1
BUILD_FILTER = 0
BUILD_RSOUND = 1
BUILD_OSS = 1
BUILD_RSOUND = 0
BUILD_OSS = 0
BUILD_ALSA = 1
BUILD_ROAR = 1
BUILD_ROAR = 0
PREFIX = /usr/local