diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-18 11:45:29 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2014-12-18 11:45:29 +0000 |
commit | 37a808de7ecdf87a496bd71db16cdf561e7e1537 (patch) | |
tree | 04999339ab92f320cc02fd7d316b94d9916e94e6 /Makefile | |
parent | 2fcff7d8c86bc6a752bd66259c2f3afa7c301e85 (diff) | |
download | s6-networking-37a808de7ecdf87a496bd71db16cdf561e7e1537.tar.xz |
Fix minidentd (wrong byte order in /proc/net/tcp*) and ident-client.
Add mgetuid.c to the list of cleaned targets.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,6 +8,7 @@ it: all CC = $(error Please use ./configure first) +EXTRA_TARGETS := -include config.mak include package/targets.mak @@ -35,7 +36,7 @@ ALL_INCLUDES := $(wildcard src/include/$(package)/*.h) all: $(ALL_LIBS) $(ALL_BINS) $(ALL_INCLUDES) clean: - @exec rm -f $(ALL_LIBS) $(ALL_BINS) $(wildcard src/*/*.o src/*/*.lo) + @exec rm -f $(ALL_LIBS) $(ALL_BINS) $(wildcard src/*/*.o src/*/*.lo) $(EXTRA_TARGETS) distclean: clean @exec rm -f config.mak src/include/${package}/config.h |