replace gtk frontend with xlib

git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@757 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-08-22 20:56:54 +00:00
parent 2f3ca01638
commit a148806dc6
2 changed files with 168 additions and 138 deletions

View file

@ -16,12 +16,7 @@ CFLAGS = -ggdb -Wall -falign-functions=2
endif
DEFINES = _UNZIP_SUPPORT IO_STATS IN_EVDEV
CFLAGS += -I../.. -I.
# gtk
CFLAGS += `pkg-config --cflags gtk+-2.0`
LDFLAGS += `pkg-config --libs gtk+-2.0`
CFLAGS += `pkg-config --cflags gthread-2.0`
LDFLAGS += `pkg-config --libs gthread-2.0`
LDFLAGS += -lX11 -lpthread
# frontend
OBJS += platform/gp2x/emu.o blit.o in_evdev.o plat.o sndout_oss.o gp2x.o log_io.o
@ -134,10 +129,6 @@ cpu/mz80/mz80.o : ../../cpu/mz80/mz80.asm
$(CC) $(CFLAGS) -c $< -o $@
#pico/sound/ym2612.o : ../../pico/sound/ym2612.c
# @echo ">>>" $@
# $(CC) $(CFLAGS) -c $< -o $@
cpu/fame/famec.o : ../../cpu/fame/famec.c ../../cpu/fame/famec_opcodes.h
@echo ">>>" $<
$(CC) $(CFLAGS) -Wno-unused -c $< -o $@