Skip to content
This repository has been archived by the owner on Jan 23, 2018. It is now read-only.

Commit

Permalink
Merge pull request #13 from moben/master
Browse files Browse the repository at this point in the history
fix building if CC is exported
  • Loading branch information
satya164 committed Feb 11, 2015
2 parents 29ccdfd + 4a1de56 commit ebbba82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,5 +1,5 @@
VERSION=0.1
CC=valac
VALAC=valac
CFLAGS=--pkg gtk+-3.0
LDFLAGS=-X -lm
GETTEXT_PACKAGE=gtk-theme-config
Expand All @@ -18,7 +18,7 @@ INSTALL_DATA=$(INSTALL) -Dpm 0644
all: $(BINARY)

$(BINARY): $(SOURCE)
$(CC) $(VALAFLAGS) $(CFLAGS) $(LDFLAGS) $(SOURCE) -o $(BINARY)
$(VALAC) $(VALAFLAGS) $(CFLAGS) $(LDFLAGS) $(SOURCE) -o $(BINARY)

clean:
$(CLEAN) $(BINARY)
Expand Down

0 comments on commit ebbba82

Please sign in to comment.