diff options
author | Samuel Lidén Borell <samuel@slbdata.se> | 2009-06-11 01:27:19 +0200 |
---|---|---|
committer | Samuel Lidén Borell <samuel@slbdata.se> | 2010-01-02 22:27:02 +0100 |
commit | 654bd6a9838a3919c88de960c1b2026324636616 (patch) | |
tree | daf6d37f1486a5e9da239fb9312adbc85c41fdaf /plugin/Makefile | |
parent | 05e9f45ad44ff088a48c9b7639ff4cabd3965b7b (diff) | |
download | fribid-654bd6a9838a3919c88de960c1b2026324636616.tar.gz fribid-654bd6a9838a3919c88de960c1b2026324636616.tar.bz2 fribid-654bd6a9838a3919c88de960c1b2026324636616.zip |
PMake compatibility
Diffstat (limited to 'plugin/Makefile')
-rw-r--r-- | plugin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/Makefile b/plugin/Makefile index 9c4846d..dbe2db9 100644 --- a/plugin/Makefile +++ b/plugin/Makefile @@ -12,11 +12,11 @@ npobject.o: npobject.h plugin.h pipe.o: ../common/pipe.h ../common/pipe.c ../common/defines.h plugin.o: plugin.h -%.o: %.c +.c.o: $(CC) $(CCFLAGS) -c $< -o $@ libplugins.so: $(OBJECTS) - $(CC) -shared -Wl,-z,defs,-soname,libplugins.so -o $@ $^ -lc + $(CC) -shared -Wl,-z,defs,-soname,libplugins.so -o $@ $(OBJECTS) -lc .PHONY: all clean clean: |