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.

29 lines
644B

  1. SLUG = Bidoo
  2. VERSION = 0.6.0dev
  3. FLAGS += -I./src/dep/include -I./src/dep/audiofile -I./src/dep/filters
  4. include ../../arch.mk
  5. ifeq ($(ARCH), lin)
  6. LDFLAGS += -L../../dep/lib -lglfw ../../dep/lib/libcurl.a src/dep/lib/libmpg123.a
  7. endif
  8. ifeq ($(ARCH), mac)
  9. LDFLAGS += -L../../dep/lib -lglfw ../../dep/lib/libcurl.a src/dep/lib/libmpg123.a
  10. endif
  11. ifeq ($(ARCH), win)
  12. LDFLAGS += -L../../dep/lib -lglfw3dll -lcurl src/dep/lib/libmpg123.a -lshlwapi
  13. endif
  14. SOURCES = $(wildcard src/*.cpp src/dep/audiofile/*cpp src/dep/pffft/*c src/dep/filters/*cpp)
  15. DISTRIBUTABLES += $(wildcard LICENSE*) res
  16. include ../../plugin.mk
  17. dep:
  18. $(MAKE) -C src/dep