diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-08-16 18:25:02 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-08-16 18:25:02 +0200 |
commit | 4cc6214a4c05086b4a6d75422c7505aa098f51cc (patch) | |
tree | b775f41894dfd20d0e46b0e6d92f4819de1f9800 /Makefile | |
parent | df4e02b8bd01a6a72e7282fc9b3595dd27e8ee17 (diff) |
Culling off the ./ dependancy on libraries.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -223,7 +223,7 @@ lua-interface-gl.$(SHARED_EXT): $(ALL_OBJECTS) ln -sf $@ lua-interface.$(SHARED_EXT) lua-interface: lua-interface-mesa.$(SHARED_EXT) lua-interface-main.o - $(LD) -o $@ ./lua-interface.$(SHARED_EXT) lua-interface-main.o + $(LD) -o $@ -L. lua-interface.$(SHARED_EXT) lua-interface-main.o lua-interface-dbg: $(ALL_OBJECTS) $(DEBUG_OBJECTS) $(LD) -o lua-interface-dbg $(ALL_OBJECTS) $(DEBUG_OBJECTS) $(LDFLAGS) $(LDFLAGS_MESA) -locci -lclntsh ../lua-modules-iup/luaiup.a -lXm -lXpm -lXmu -lXt -lXext -lX11 -lm |