mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
2761f9b951
klibc has a target make spotless, this patch makes it possible to clean the whole udev tree and start from scratch.
33 lines
696 B
Makefile
33 lines
696 B
Makefile
#
|
|
# Makefile for tdb directory
|
|
#
|
|
|
|
CFLAGS = -DSTANDALONE -DTDB_DEBUG -g -DHAVE_MMAP=1
|
|
|
|
PROGS = tdbtest tdbtool tdbtorture
|
|
TDB_OBJ = tdb.o spinlock.o
|
|
|
|
default: $(TDB_OBJ)
|
|
|
|
progs: $(PROGS)
|
|
|
|
tdbtest: tdbtest.o $(TDB_OBJ)
|
|
$(CC) $(CFLAGS) -o tdbtest tdbtest.o $(TDB_OBJ) -lgdbm
|
|
|
|
tdbtool: tdbtool.o $(TDB_OBJ)
|
|
$(CC) $(CFLAGS) -o tdbtool tdbtool.o $(TDB_OBJ)
|
|
|
|
tdbtorture: tdbtorture.o $(TDB_OBJ)
|
|
$(CC) $(CFLAGS) -o tdbtorture tdbtorture.o $(TDB_OBJ)
|
|
|
|
tdbdump: tdbdump.o $(TDB_OBJ)
|
|
$(CC) $(CFLAGS) -o tdbdump tdbdump.o $(TDB_OBJ)
|
|
|
|
tdbbackup: tdbbackup.o $(TDB_OBJ)
|
|
$(CC) $(CFLAGS) -o tdbbackup tdbbackup.o $(TDB_OBJ)
|
|
|
|
clean:
|
|
rm -f $(PROGS) *.o *~ *% core test.db test.tdb test.gdbm
|
|
|
|
spotless: clean
|