/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-04 15:05:39 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130904150539-7xfgt38hv5q3ycl2
Fixed a few things...
And added an error type...

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
CFLAGS=-Wall -fPIC
7
7
 
8
 
FILES=src/baseobject.c #\
9
 
#      src/
 
8
OBJECTS=obj/baseobject.o obj/Error.o obj/SimpleTypeSystem.o
10
9
 
11
10
DEPS=src/baseobject.h
12
11
 
13
 
$(LIBRARY):obj/baseobject.o $(DEPS)
 
12
$(LIBRARY):$(OBJECTS) $(DEPS)
14
13
        $(CC) $(CFLAGS) -shared -o $@ $<
15
14
 
16
15
obj/%.o: src/%.c $(DEPS)