/+junk/c_sdl_joypad_ducktape

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/c_sdl_joypad_ducktape

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Gustav Hartvigsson
  • Date: 2014-09-02 20:15:48 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140902201548-h1kss1wdocqhs8df
* Fixed Makefile
* Changed all void * to _pointer in DynamicArray.[h,c].
* Fixed GameObject to work with the new base-type.
* Made the Object stuffs...
* added string_new_printf utility function in utils.[h,c]

* Derp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
CC=gcc
2
 
CFLAGS=`pkg-config sdl2 mozjs185 --cflags` -Wall -g -std=c11
3
 
LIBS=`pkg-config sdl2 mozjs185 --libs` -lm
 
2
CFLAGS=`pkg-config sdl2 --cflags` -Wall -g -std=c11
 
3
LIBS=`pkg-config sdl2 --libs` -lm
4
4
 
5
5
DEPS=src/Game.h\
6
6
     src/GameObject.h\
9
9
     src/GameObject.h\
10
10
     src/JSParser.h\
11
11
     src/DynamicArray.h\
12
 
     src/duktape.h
 
12
     src/duktape.h\
 
13
     src/Object.h\
 
14
     src/defs.h\
 
15
     src/utils.h
13
16
 
14
17
OBJECTS=obj/main.o\
15
18
        obj/Game.o\
19
22
        obj/GameObject.o\
20
23
        obj/JSParser.o\
21
24
        obj/DynamicArray.o\
22
 
        obj/duktape.o
 
25
        obj/duktape.o\
 
26
        obj/Object.o\
 
27
        obj/utils.o
23
28
 
24
29
EXEC=SdlJs
25
30