git.asbjorn.biz
/
rapper.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
removed dependency on 'readlink -f'
[rapper.git]
/
tools
/
lpcrc
/
Makefile
1
CC = gcc
2
LD = gcc
3
LDFLAGS = -Wall -O4 -std=c99
4
EXES = lpcrc
5
6
all: $(EXES)
7
8
% : %.c
9
$(LD) $(LDFLAGS) -o $@ $<
10
11
clean:
12
rm -f $(EXES)