plugin test for the mentally unwell. I feel bad for using recursive Make.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

18 lines
212B

  1. #!/bin/make -f
  2. PREFIX := .
  3. CP := cp -f
  4. all: plug/libplug.so src/plugin
  5. plug/libplug.so:
  6. make -C plug
  7. $(CP) $@ $(PREFIX)
  8. src/plugin:
  9. make -C src
  10. $(CP) $@ $(PREFIX)
  11. .PHONY: all plug/libplug.so src/plugin