libui/unix/GNUmakeinc.mk

48 lines
859 B
Makefile
Raw Normal View History

2015-04-22 14:04:55 -05:00
# 22 april 2015
CFILES += \
2015-04-22 16:54:05 -05:00
unix/alloc.c \
unix/area.c \
unix/box.c \
unix/button.c \
unix/checkbox.c \
unix/child.c \
2015-06-14 18:58:00 -05:00
unix/combobox.c \
unix/control.c \
unix/datetimepicker.c \
unix/draw.c \
unix/entry.c \
2015-06-14 18:58:00 -05:00
unix/group.c \
unix/label.c \
2015-04-22 16:54:05 -05:00
unix/main.c \
2015-04-23 12:11:36 -05:00
unix/menu.c \
2015-06-14 18:58:00 -05:00
unix/progressbar.c \
unix/radiobuttons.c \
unix/separator.c \
unix/slider.c \
unix/spinbox.c \
2015-06-26 17:45:00 -05:00
unix/stddialogs.c \
unix/tab.c \
unix/text.c \
unix/util.c \
unix/window.c
2015-04-22 14:04:55 -05:00
HFILES += \
2015-04-22 14:04:55 -05:00
unix/uipriv_unix.h
2015-04-22 16:56:39 -05:00
# thanks ebassi in irc.gimp.net/#gtk+
CFLAGS += \
2015-04-22 16:56:39 -05:00
-D_UI_EXTERN='__attribute__((visibility("default"))) extern' \
2015-04-22 14:04:55 -05:00
-fvisibility=hidden \
2015-04-24 13:11:23 -05:00
-fPIC \
2015-04-22 14:04:55 -05:00
`pkg-config --cflags gtk+-3.0`
LDFLAGS += \
2015-04-22 14:04:55 -05:00
-fvisibility=hidden \
2015-04-24 13:11:23 -05:00
-fPIC \
2015-10-12 08:08:50 -05:00
`pkg-config --libs gtk+-3.0` -lm
2015-04-22 14:04:55 -05:00
# flags for warning on undefined symbols
LDFLAGS += \
-Wl,--no-undefined -Wl,--no-allow-shlib-undefined