dwww Home | Show directory contents | Find package

SRC=$(wildcard *.c)
APPS=$(SRC:%.c=%)
SNDLIBS=$(LIBS) $(shell pkg-config --cflags --libs sndfile) -lm

.PHONY: default clean

default: $(APPS)

%: %.c
        $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(SNDLIBS)

clean:
        rm -f $(APPS)

Generated by dwww version 1.15 on Wed May 22 22:33:40 CEST 2024.