From e596091daf51443248a0cb427832be62552eaf27 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 28 Oct 2013 19:50:41 +0100 Subject: Reorganization. Move preseed-related stuff in ./preseed/, and vm-related stuff in ./virtualenv/. --- src/fripost-partman-udeb/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/fripost-partman-udeb/Makefile (limited to 'src/fripost-partman-udeb/Makefile') diff --git a/src/fripost-partman-udeb/Makefile b/src/fripost-partman-udeb/Makefile new file mode 100644 index 0000000..b603c83 --- /dev/null +++ b/src/fripost-partman-udeb/Makefile @@ -0,0 +1,13 @@ +CC ?= gcc +CFLAGS ?= -Wall -x c -s + +LIBS = lib/stdbuf.so + +all: ${LIBS} + +%.so: %.c + #TODO: multiarch (-m32/-m64) + ${CC} ${CFLAGS} $< -fPIC -shared -o $@ + +clean: + rm -f ${LIBS} -- cgit v1.2.3