=====
Organization: Thought Unlimited.  Public service Unix since 1986.
Of_Interest: With 28 years  of service  to the  Unix  community.


        can anybody on this list figure out why the binary fails 
        and how I should fix it?  arrow.c is sround 100 lines; to
        make things simple I am attaching a makefile.  the WARNING 
        is a mystery unless the snafu is at line #103... .

        thanks for any insights.

-- 
 Gary Kline  kl...@thought.org  http://www.thought.org  Public Service Unix
             Twenty-eight years of service to the Unix community.


# begin make file
PROGRAM = arrow
PROGRAM_FILES = arrow.c
OBJS = arrow.o 

#configuration for building GTK X applications
CFLAGS  += -g -Wall $(shell pkg-config --cflags gtk+-3.0) -DGSEAL_ENABLE=1 
-DG_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 
-DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DGTK_DISABLE_DEPRECATED=1
LIBS    += $(shell pkg-config --libs gtk+-3.0) 

all: arrow
        file $(PROGRAM)
        size $(PROGRAM)

arrow: $(OBJS)
        $(CC) -g $(OBJS) -o $(PROGRAM) $(LIBS)

clean:
        @rm -rf $(PROGRAM) $(OBJS)
#end make file

_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to