diff options
author | Matt Turner <mattst88@gmail.com> | 2006-12-26 19:37:43 +0000 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2006-12-26 19:37:43 +0000 |
commit | 38a93f5b90ddb6300e25934c4e43240b64d5f761 (patch) | |
tree | bc6253802a5fa1d96980d30aa900a52dabd3b1a9 /Makefile | |
parent | 1c918cfffabb39f2ec977c46cef43c43072a5c3c (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-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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}
|