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.

23 lines
500B

  1. SLUG = NauModular
  2. VERSION = 0.6.0dev
  3. # FLAGS will be passed to both the C and C++ compiler
  4. FLAGS +=
  5. CFLAGS +=
  6. CXXFLAGS +=
  7. # Add .cpp and .c files to the build
  8. SOURCES += $(wildcard src/*.cpp)
  9. DISTRIBUTABLES += $(wildcard LICENSE*) res
  10. RACK_DIR ?= ../..
  11. include $(RACK_DIR)/plugin.mk
  12. # Careful about linking to libraries, since you can't assume much about the user's environment and library search path.
  13. # Static libraries are fine.
  14. ifeq ($(ARCH), win)
  15. LDFLAGS += -lws2_32
  16. else
  17. LDFLAGS +=
  18. endif