projects
/
mspang
/
www.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
s/Summer/Spring/ - woops!
[mspang/www.git]
/
cow
/
Makefile
1
MAIN = cow
2
CFLAGS = -I/usr/include/libxml2 -DDEBUG -pedantic -ansi -Wall
3
LDFLAGS = $(CFLAGS) -lxml2 -lxslt
4
SOURCES = $(wildcard *.c)
5
OBJECTS = $(SOURCES:.c=.o)
6
7
all: $(MAIN)
8
9
$(MAIN): $(OBJECTS)
10
$(CC) $(LDFLAGS) -o $@ $(OBJECTS)