Files: 4be6db6a6163e3a0ccd85e7e193f54406c80a29a / Makefile
294 bytesRaw
1 | CFLAGS = -std=c99 |
2 | LIB_CFLAGS = -fPIC |
3 | LDLIBS = -ldl -lasound -lm |
4 | LIB_LDLIBS = -lm |
5 | |
6 | all: studio tune.so |
7 | |
8 | studio: studio.c tune.h |
9 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDLIBS) |
10 | |
11 | tune.so : tune.c tune.h |
12 | $(CC) $(LIB_CFLAGS) -shared $(LDFLAGS) -o $@ $< $(LIB_LDLIBS) |
13 | |
14 | clean: |
15 | $(RM) *.o *.so studio |
16 | |
17 |
Built with git-ssb-web