SomeNet
/
public repos
/
irc
/
bugbot.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
GITOLITE.txt
[irc/bugbot.git]
/
uuidgen
/
Makefile
1
CFLAGS=-g
2
3
OBJS=md5.o token.o main.o
4
5
all: $(OBJS) uuidgen
6
7
uuidgen: $(OBJS)
8
gcc -o uuidgen $(OBJS)
9
10
md5.o: md5.c md5.h
11
12
token.o: token.c token.h
13
14
main.o: main.c
15
16
clean:
17
rm -f *.o *~ core uuidgen