Non reinvents the DAW. Powerful enough to form a complete studio, fast and light enough to run on low-end hardware like the eeePC or Raspberry Pi, and so reliable that it can be used live
https://non.tuxfamily.org/
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.
|
- # -*- mode: makefile; -*-
-
- VERSION := 1.1.0
- PACKAGE := NONLIB
-
- SRCS := $(wildcard nonlib/*.C nonlib/JACK/*.C nonlib/LASH/*.C nonlib/OSC/*.C nonlib/NSM/*.C)
-
- SRCS:=$(sort $(SRCS))
- OBJS:=$(SRCS:.C=.o)
-
- CFLAGS := $(SIGCPP_CFLAGS) $(LIBLO_CFLAGS) $(JACK_CFLAGS)
-
- all: nonlib/libnonlib.a
-
- nonlib/libnonlib.a: $(OBJS)
- @ ar rcs $@ $(OBJS)
-
- .PHONEY: nonlib
- nonlib: nonlib/libnonlib.a
-
- clean:
- rm -f $(OBJS) nonlib/libnonlib.a .deps
-
- install:
- @
|