summaryrefslogtreecommitdiff
path: root/linux/module.mk
diff options
context:
space:
mode:
authordocwhat1999-12-06 01:48:58 +0000
committerdocwhat1999-12-06 01:48:58 +0000
commitf5edc7c4976d67e5d1c6bf37cf1a6687d9f22f0e (patch)
tree40527efb16739b8fa5e5a73992e38aaa89a4f05d /linux/module.mk
parentb0cf5ff910a41c2c1d7c9908e9db42e90278c56a (diff)
Added static target, need to still do tarball and zip
git-svn-id: http://svn.leocad.org/trunk@26 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'linux/module.mk')
-rw-r--r--linux/module.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/module.mk b/linux/module.mk
index 40af84a..534ed46 100644
--- a/linux/module.mk
+++ b/linux/module.mk
@@ -1,6 +1,6 @@
SRC += linux/custom.cpp linux/gdkgl.c linux/gtkglarea.c linux/dialogs.cpp linux/gtktools.cpp linux/main.cpp linux/menu.cpp linux/system.cpp linux/toolbar.cpp
-CFLAGS += `gtk-config --cflags`
-CXXFLAGS += `gtk-config --cflags`
-LIBS += `gtk-config --libs`
+CFLAGS += $(shell gtk-config --cflags)
+CXXFLAGS += $(shell gtk-config --cflags)
+LIBS += $(shell gtk-config --libs)