~onli/simdock/master

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: onli
  • Date: 2014-05-17 13:11:26 UTC
  • Revision ID: git-v1:e2bad1415ed2b92875d33df8215bdebbd53b71f0
Minor: prepare debug

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
SHELL ?= /bin/sh
9
9
CC = g++
10
 
CCFLAGS ?= -march=native -O2 -flto
 
10
# CC := clang --analyze
 
11
CCFLAGS ?= -march=native -O3 -flto -Wall
11
12
DEPS = $(shell pkg-config --cflags glib-2.0 gconf-2.0 gtk+-2.0 libwnck-1.0 xcb-ewmh)
12
13
DEPS += $(shell wx-config --cflags )
13
14
LDFLAGS = $(shell pkg-config --libs glib-2.0 gconf-2.0 gtk+-2.0 libwnck-1.0 xcb-ewmh)
19
20
all: simdock
20
21
 
21
22
simdock: $(SRCS)
22
 
        $(CC) $(CCFLAGS) $(SRCS) $(LDFLAGS) -I$(SRCDIR) -o simdock
 
23
        $(CC) $(CCFLAGS) $(SRCS) $(LDFLAGS) -o simdock
23
24
         
24
25
%.o: %.cc %.h
25
26
        $(CC) $(CCFLAGS) $< $(DEPS) -c -o $@