diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-11 23:50:37 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-11 23:50:37 +0000 |
commit | 2898d7c9683311d8b9f370d6f82beb160f8a8f1d (patch) | |
tree | 4d4fddbd1c6a2a875d3e4a581da381cebd033c7d /Makefile | |
parent | 007a0cdbdd965c78449008cff72f7406acab31f6 (diff) | |
download | s6-networking-2898d7c9683311d8b9f370d6f82beb160f8a8f1d.tar.xz |
Clean up static/shared libs initialization in configure and Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -8,7 +8,9 @@ it: all CC = $(error Please use ./configure first) -EXTRA_TARGETS := + +STATIC_LIBS := +SHARED_LIBS := -include config.mak include package/targets.mak @@ -36,7 +38,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) $(EXTRA_TARGETS) + @exec rm -f $(ALL_LIBS) $(ALL_BINS) $(wildcard src/*/*.o src/*/*.lo) distclean: clean @exec rm -f config.mak src/include/${package}/config.h |