projects
/
cgds.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
'update'
[cgds.git]
/
test
/
Makefile.base
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
CC = gcc
2
CFLAGS = -g -std=gnu99 -Wno-implicit-function-declaration
3
LDFLAGS = -L../src/obj -lcgds
4
INCLUDES = -I.. -I../src
5
TARGET = testcgds
6
7
all: obj/$(TARGET)
8
9
clean:
10
rm -f obj/*.o
11
rm -f obj/$(TARGET)
12
13
.PHONY: all clean