Update Makefile

Now it should compile linking against gtk and gstreamer
This commit is contained in:
Bryan Schumaker 2011-08-18 08:26:51 -04:00
parent 7efcfddcde
commit 4b7762c589
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,9 @@
export CC = g++
export CFLAGS = -Wall -Werror -g -O2
export INCLUDE = -I$(CURDIR)/include
#export LINK = `sdl-config --cflags --libs` -lSDL_image -lSDL_mixer `pkg-config --cflags --libs lua` -ldl
export GTK = `pkg-config --cflags --libs gtk+-2.0`
export GST = `pkg-config --cflags --libs gstreamer-0.10`
export LINK = $(GST) $(GTK)
export BUILD = $(CC) $(CFLAGS) $(INCLUDE)
export SRCDIR = $(CURDIR)