Makefile 282 B

12345678910
  1. all:
  2. clang -dynamiclib -fPIC -o weesleep.dylib weesleep.c
  3. clang -F /System/Library/Frameworks -framework Foundation -framework IOKit -o themagic themagic.c
  4. install:
  5. mkdir -p ~/.weechat/plugins
  6. cp weesleep.dylib themagic ~/.weechat/plugins/
  7. clean:
  8. rm weesleep.dylib themagic