summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-05-18 16:42:10 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-05-18 16:42:10 +0200
commit150f99b09f9ecb5c837c5c184641c0b2aecf7a36 (patch)
tree5953b4d449834bffec91baea8a2b7bad48655c61 /makefiles
parentdacc8d2149f9095d612d95ec8dfcf596681be18b (diff)
downloadwolfbones-150f99b09f9ecb5c837c5c184641c0b2aecf7a36.tar.gz
wolfbones-150f99b09f9ecb5c837c5c184641c0b2aecf7a36.tar.bz2
fixed a linking problem around LINK and tcc
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/gmake/compiler.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefiles/gmake/compiler.mk b/makefiles/gmake/compiler.mk
index dff1c74..ec3a05a 100644
--- a/makefiles/gmake/compiler.mk
+++ b/makefiles/gmake/compiler.mk
@@ -323,7 +323,7 @@ CCPP_LINK = $(CCPP)
$(CCPP) -c -o $@ $(CCPPFLAGS) $<
%$(EXE): %.o $(OBJS) $(TEST_OBJS)
- $(CCPP_LINK) -o $@ $(LDFLAGS) $(OBJS) $(TEST_OBJS) $< $(LIBS)
+ $(LINK) -o $@ $(LDFLAGS) $(OBJS) $(TEST_OBJS) $< $(LIBS)
%.sho : %.c
$(CC) -c -o $@ $(SO_COMPILE_FLAGS) -DSHARED $(CFLAGS) $<