projects
/
cgds.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
improve test/makemain.sh, move queu_pop code to vector class
[cgds.git]
/
src
/
Makefile.base
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