diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-13 20:15:32 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-13 20:15:32 +0000 |
commit | 7c7ba90e380488658737436e409c6b8aa019b35d (patch) | |
tree | 8aeb5cc616af678c00351950e67984b1f474c86a /src/plugins/Makefile | |
parent | 3eec5e159921a881bae4741434968896ff7e4620 (diff) | |
download | hercules-7c7ba90e380488658737436e409c6b8aa019b35d.tar.gz hercules-7c7ba90e380488658737436e409c6b8aa019b35d.tar.bz2 hercules-7c7ba90e380488658737436e409c6b8aa019b35d.tar.xz hercules-7c7ba90e380488658737436e409c6b8aa019b35d.zip |
- Fixed the plugin's makefile to make it compile cleanly
- Added used of Show* stuff in sig.c rather than printf.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6048 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/plugins/Makefile')
-rw-r--r-- | src/plugins/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/Makefile b/src/plugins/Makefile index d7b6f4573..71cb6ec3a 100644 --- a/src/plugins/Makefile +++ b/src/plugins/Makefile @@ -42,5 +42,9 @@ clean: sample.$(PLUGINEXT): sample.c $(COMMON_H)
sig.$(PLUGINEXT): sig.c $(COMMON_H)
+ $(CC) $(CFLAGS) -shared -o ../../plugins/$@ $< \
+ ../common/obj/showmsg.o
+ @touch $@
+
pid.$(PLUGINEXT): pid.c $(COMMON_H)
gui.$(PLUGINEXT): gui.c $(COMMON_H)
|