Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Patched to compile on Ubuntu 11.10.
  • Loading branch information
icculus committed Nov 18, 2011
1 parent ef4498f commit ebb545c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Expand Up @@ -80,19 +80,19 @@ example/manymousepong.o : example/manymousepong.c
$(CC) $(CFLAGS) -o $@ $< `sdl-config --cflags`

detect_mice: $(BASEOBJS) example/detect_mice.o
$(LD) $(LDFLAGS) -o $@ $+
$(LD) -o $@ $+ $(LDFLAGS)

test_manymouse_stdio: $(BASEOBJS) example/test_manymouse_stdio.o
$(LD) $(LDFLAGS) -o $@ $+
$(LD) -o $@ $+ $(LDFLAGS)

test_manymouse_sdl: $(BASEOBJS) example/test_manymouse_sdl.o
$(LD) $(LDFLAGS) -o $@ $+ `sdl-config --libs`
$(LD) -o $@ $+ `sdl-config --libs` $(LDFLAGS)

mmpong: $(BASEOBJS) example/mmpong.o
$(LD) $(LDFLAGS) -o $@ $+ `sdl-config --libs`
$(LD) -o $@ $+ `sdl-config --libs` $(LDFLAGS)

manymousepong: $(BASEOBJS) example/manymousepong.o
$(LD) $(LDFLAGS) -o $@ $+ `sdl-config --libs`
$(LD) -o $@ $+ `sdl-config --libs` $(LDFLAGS)


# Java support ...
Expand Down

0 comments on commit ebb545c

Please sign in to comment.