Hi all,
I have a project that I have designed the GUI with Glade 3 and Gtk+ 2.0 (under Ubutu 11.04).
I am still a novice programmer when it comes to Gtk & C! :)
This is my make file which I have adopted from the Internet.
Code:
CC = gcc
OBJS = file1.o file2.o file3.o file4.o
CFLAGS = -g -O2 `pkg-config --cflags gtk+-2.0`
test1: $(OBJS)
gcc -o test1 $(OBJS) `pkg-config --libs gtk+-2.0 gmodule-2.0 gthread-2.0`
clean:
rm $(OBJS) test1 2>/dev/null || /bin/true
My issue is, when I deploy the executable to another system I have to ship it with test1.glade file as part of the final product. I would like to eliminate this. Please let me know of a way to do this. Thank you!
Nikke