1
0
mirror of https://github.com/gluster/glusterfs.git synced 2026-02-06 18:48:16 +01:00
Files
glusterfs/tests/basic/fuse/Makefile
Niels de Vos 0c7ce74914 build: make it possible to build cleanly 2x in a row
'make clean' does not cleanup everything, and some of the files get
cleaned too eagerly. Several files are being packaged in a 'make dist'
tarball, that get rebuild each time anyway.

Specifically, this change prevents
 - libglusterfs/src/generator.pyc from laying around
 - keeping rpc/xdr/gen/*.x symlinks
 - modifying tests/basic/{fuse,gfapi}/Makefile each run
 - including tests/env.rc and events/src/eventtypes.py in the tarball

Change-Id: I774dd1abf3a9d3b6a89b938cf6ee7d7792c59a82
BUG: 1501317
Reported-by: Patrick Matthäi <pmatthaei@debian.org>
Signed-off-by: Niels de Vos <ndevos@redhat.com>
2017-10-10 13:23:50 +02:00

13 lines
139 B
Makefile

CFLAGS = -Wall -g
LDFLAGS =
BINARIES = seek
%: %.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
all: $(BINARIES)
clean:
-$(RM) $(BINARIES)