/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC=gcc

# This is the name of the outputed shared object
LIBRARY=lib/libssts.so #library supersimpletyesystem

CFLAGS=-Wall -fPIC

FILES=src/baseobject.c #\
#      src/

DEPS=src/baseobject.h

$(LIBRARY):obj/baseobject.o $(DEPS)
	$(CC) $(CFLAGS) -shared -o $@ $<

obj/%.o: src/%.c $(DEPS)
	$(CC) $(CFLAGS) -c -o $@ $<