aboutsummaryrefslogtreecommitdiffstats
path: root/src/fripost-partman-udeb/Makefile
blob: 1b96c1473684ae2a5f2e1a88aa980529431d91d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CC ?= gcc
CFLAGS ?= -Wall -x c -s

LIBS = lib/stdbuf.so

all: ${LIBS}

%.so: %.c
	${CC} ${CFLAGS} $< -fPIC -shared -o $@

clean:
	rm -f ${LIBS}