projects
/
hclip.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Remove tabs
[hclip.git]
/
Makefile
1
CC=gcc
2
INCLUDE=`pkg-config gtk+-2.0 --cflags`
3
CFLAGS=-Wall -O2
4
LIB=`pkg-config gtk+-2.0 --libs`
5
6
STRIP=strip
7
8
9
OBJ=hclip.o
10
11
.SUFFIXES: .o.c
12
13
.c.o:
14
$(CC) $(CFLAGS) $(INCLUDE) -c $<
15
16
all: hclip
17
18
hclip: $(OBJ)
19
$(CC) -o $@ $(OBJ) $(LIB)
20
$(STRIP) $@
21
22
clean:
23
rm -rf *core *.o hclip
24