summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2006-12-26 19:37:43 +0000
committerMatt Turner <mattst88@gmail.com>2006-12-26 19:37:43 +0000
commit38a93f5b90ddb6300e25934c4e43240b64d5f761 (patch)
treebc6253802a5fa1d96980d30aa900a52dabd3b1a9 /Makefile
parent1c918cfffabb39f2ec977c46cef43c43072a5c3c (diff)
Starting work again. Added CApplication class for easier creation of the main window. Next looks like it's going to be a message class (GI_Message* function wrapper).HEADmaster
git-svn-id: svn://mattst88.com/svn/skygipp/trunk@4 a71248a0-261a-0410-b604-901f7c0bd773
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0684b24..71f2fa7 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,9 @@ CC=g++
CPPFLAGS=-Os -pipe -fPIC -DPIC
LDFLAGS=-Wl,-O1
-OBJECTS=widget.o widgetbutton.o widgetcheckbox.o widgetform.o \
- widgettextfield.o widgetprogressbar.o widgetslider.o \
- widgettitle.o widgettooltip.o
+OBJECTS=application.o widget.o widgetbutton.o widgetcheckbox.o \
+ widgetform.o widgettextfield.o widgetprogressbar.o \
+ widgetslider.o widgettitle.o widgettooltip.o
all: ${OBJECTS}
${CC} ${LDFLAGS},-s -shared -o libskygi++.so ${OBJECTS}