diff options
author | hexcoder- <heiko@hexco.de> | 2019-12-10 07:33:53 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2019-12-10 07:33:53 +0100 |
commit | f3fb1d3411607c58ffcc0c4ab856f7acf6b5857f (patch) | |
tree | 2405857d02ce3d2efe31607a126443a2d9ba909b | |
parent | 22452da2a7bdb0bb1e3def69f218050b4ca601ec (diff) | |
download | afl++-f3fb1d3411607c58ffcc0c4ab856f7acf6b5857f.tar.gz |
avoid rebuilding libdislocator on every make
-rw-r--r-- | libdislocator/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdislocator/Makefile b/libdislocator/Makefile index 216d2862..56c47ae5 100644 --- a/libdislocator/Makefile +++ b/libdislocator/Makefile @@ -27,6 +27,7 @@ endif all: libdislocator.so +VPATH = .. libdislocator.so: libdislocator.so.c ../config.h $(CC) $(CFLAGS) -shared -fPIC $< -o ../$@ $(LDFLAGS) |