/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-09 17:17:51 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130909171751-jik10mg7w238ouzg
* Made sure the code compiled
* switched GCC to C11 mode...
     Why is this not standard? It is not even C99 FFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# This is the name of the outputed shared object
4
4
LIBRARY=lib/libssts.so #library supersimpletyesystem
5
5
 
6
 
CFLAGS=-Wall -fPIC -g
 
6
CFLAGS=-std=c11 -Wall -fPIC -g
7
7
 
8
8
OBJECTS=obj/baseobject.o obj/Error.o obj/Func.o obj/Map.o obj/SimpleTypeSystem.o
9
9