repo.or.cz
/
curltunnel.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
first version of the Makefile
[curltunnel.git]
/
Makefile
blob
bde5bb13d554471b30b138b498235be75a9bc090
1
TARGET
=
curltunnel
2
OBJS
=
libcurl_tunnel.o
3
LIBS
= -
lcurl
4
5
all
: $(
TARGET
)
6
7
$(
TARGET
): $(
OBJS
)
8
$(
CC
) -
o
$(
TARGET
) $(
LDFLAGS
) $(
LIBS
) $(
OBJS
)
9
10
libcurl_tunnel.o
:
libcurl_tunnel.c
11
12
clean
:
13
rm
-
f
$(
TARGET
) $(
OBJS
)