~onli/simdock/master

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: onli
  • Date: 2014-10-02 07:42:05 UTC
  • Revision ID: git-v1:df2cab5b7809f1ca1459a61acb5428f72b56f4b3
sync makefile with local one (pipe, O2)
Launchpad builds simdock for the ppa in a way that makes it crash when clicking on an icon. First try to minimize differences

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
SHELL ?= /bin/sh
9
9
CC = g++
10
10
# CC := clang --analyze
11
 
CCFLAGS ?= -march=native -O3 -flto -Wall
 
11
CCFLAGS ?= -march=native -O2 -flto -Wall -pipe
12
12
DEPS = $(shell pkg-config --cflags glib-2.0 gconf-2.0 gtk+-2.0 libwnck-1.0 xcb-ewmh)
13
13
DEPS += $(shell wx-config --cflags )
14
14
LDFLAGS = $(shell pkg-config --libs glib-2.0 gconf-2.0 gtk+-2.0 libwnck-1.0 xcb-ewmh)