git ssb

0+

cel / foostudio



Tree: e03a630124fa47eb03d508fcfd576f8ebe4f28f1

Files: e03a630124fa47eb03d508fcfd576f8ebe4f28f1 / Makefile

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

Built with git-ssb-web