Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
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 := FL
-
- all: FL
-
- SRCS := $(wildcard FL/*.C FL/*.fl)
-
- SRCS:=$(SRCS:.fl=.C)
- SRCS:=$(sort $(SRCS))
- OBJS:=$(SRCS:.C=.o)
-
- all: FL/libfl_widgets.a
-
- FL/libfl_widgets.a: $(OBJS)
- @ ar rcs $@ $(OBJS)
-
- .PHONEY: FL
- FL: FL/libfl_widgets.a
-
- clean:
- rm -f $(OBJS) FL/libfl_widgets.a .deps
-
- install:
- @
|