diff options
author | twinaphex | 2014-07-14 04:50:52 +0200 |
---|---|---|
committer | twinaphex | 2014-07-14 04:50:52 +0200 |
commit | 093a70482f693c179e3646c512acf649ebcebc37 (patch) | |
tree | eed00676d3a14cc5aad93bb7aaa500f778777aa8 /raspberrypi/Makefile | |
parent | 862e940b8c108fb0d29f9a1644be7a5360d7230d (diff) | |
download | picogpsp-093a70482f693c179e3646c512acf649ebcebc37.tar.gz picogpsp-093a70482f693c179e3646c512acf649ebcebc37.tar.bz2 picogpsp-093a70482f693c179e3646c512acf649ebcebc37.zip |
Get rid of PND_BUILD/RPI_BUILD/POLLUX_BUILD/GIZ_BUILD
Diffstat (limited to 'raspberrypi/Makefile')
-rw-r--r-- | raspberrypi/Makefile | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/raspberrypi/Makefile b/raspberrypi/Makefile deleted file mode 100644 index 3f78c1e..0000000 --- a/raspberrypi/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# gpSP makefile -# Gilead Kutnick - Exophase -# pandora port - notaz -# respberry pi - DPR - -# Global definitions - -CC = gcc - -OBJS = rpi.o main.o cpu.o memory.o video.o input.o sound.o gui.o \ - cheats.o zip.o arm_stub.o warm.o cpu_threaded.o\ - gles_video.o video_blend.o - -BIN = gpsp - -# Platform specific definitions - -VPATH += .. ../arm -CFLAGS += -DARM_ARCH -DRPI_BUILD -Wall -CFLAGS += -O3 -mfpu=vfp -CFLAGS += `sdl-config --cflags` -CFLAGS += -I$(SDKSTAGE)/opt/vc/include -I$(SDKSTAGE)/opt/vc/include/interface/vcos/pthreads -CFLAGS += -I/opt/vc/include/interface/vmcs_host/linux - -# expecting to have PATH set up to get correct sdl-config first - -LIBS += `sdl-config --libs` -LIBS += -ldl -lpthread -lz -LIBS += -L$(SDKSTAGE)/opt/vc/lib/ -lGLESv2 -lEGL -lopenmaxil -lbcm_host -lvcos -lvchiq_arm -lrt - -# Compilation: - -all: $(BIN) - -%.o: %.S - $(CC) $(CFLAGS) -c -o $@ $< - - -cpu.o cpu_threaded.o: CFLAGS += -Wno-unused-variable -Wno-unused-label - -$(BIN): $(OBJS) - $(CC) $(OBJS) $(LIBS) -o $(BIN) - -clean: - rm -f *.o $(BIN) |