* Fixed two missing @LDFLAGS@ in src/plugins/Makefile.in.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11993 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
FlavioJS 2007-12-29 23:18:20 +00:00
parent 470a56dbea
commit 4c54d4923f
2 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2007/12/29 2007/12/29
* Implemented THE official Steal skill equation and game mechanics * Implemented THE official Steal skill equation and game mechanics
(basically version from /stable plus a few tweaks) (see topic:116540) (basically version from /stable plus a few tweaks) (see topic:116540)
* Added missing bAddStealRate reference to doc/item_bonus.txt * Added missing bAddStealRate reference to doc/item_bonus.txt

View File

@ -44,13 +44,13 @@ help:
##################################################################### #####################################################################
%@DLLEXT@: %.c %@DLLEXT@: %.c
@CC@ @CFLAGS@ @CPPFLAGS@ -shared -o ../../plugins/$@ $< @CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $<
gui@DLLEXT@: ../../plugins/gui.conf gui@DLLEXT@: ../../plugins/gui.conf
upnp@DLLEXT@: ../../plugins/upnp.conf upnp@DLLEXT@: ../../plugins/upnp.conf
sig@DLLEXT@: sig.c $(COMMON_OBJ) sig@DLLEXT@: sig.c $(COMMON_OBJ)
@CC@ @CFLAGS@ @CPPFLAGS@ -shared -o ../../plugins/$@ $< $(COMMON_OBJ) @CC@ @CFLAGS@ @CPPFLAGS@ @LDFLAGS@ -shared -o ../../plugins/$@ $< $(COMMON_OBJ)
../../plugins/%.conf: %.txt ../../plugins/%.conf: %.txt
cp -r $< $@ cp -r $< $@