/+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-06-14 10:32:33 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140614103233-bf8na9hzyulrn6a3
* Made it compile... again...

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
$(EXEC):$(OBJECTS)
25
25
        $(CC) -o $@ $^ $(CFLAGS) $(LIBS) 
26
26
 
27
 
obj/%.o: src/%.c $(DEPS)
 
27
obj/%.o: src/%.c $(DEPS) ./obj/
28
28
        $(CC) $(CFLAGS) -c -o $@ $< 
29
29
 
 
30
./obj/:
 
31
        mkdir -p ./obj/
 
32
 
30
33
.PHONY: clean run docs docs-latex
31
34
.IGNORE: clean run docs docs-latex
32
35