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