You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
287 B
Makefile

PKGS=alsa jack gtk+-3.0
CFLAGS=$(shell pkg-config $(PKGS) --cflags)
LDFLAGS=$(shell pkg-config $(PKGS) --libs)
ifeq ($(DEBUG),true)
CFLAGS+=-Wall -g
endif
programs=vampisynth
vampisynth_SRCS=synth.c envelope.c filter.c oscillator.c voice.c sineosc.c main.c
include common.mk/common.mk