diff options
| author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-22 19:38:57 +0200 |
|---|---|---|
| committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2019-09-22 19:38:57 +0200 |
| commit | 9aefe7a0402d4389aaff1f070c84ea1b95abc0fd (patch) | |
| tree | 9e0f9f008d7a41c43a09304e8bb5364a14a8d75e /libdislocator | |
| parent | 17bb51756faeaeda6fb17d63ede0a1a9d8ae4b5c (diff) | |
| parent | 5044bb0332bf2bed8fe8691f411bd9c144e332af (diff) | |
| download | afl++-9aefe7a0402d4389aaff1f070c84ea1b95abc0fd.tar.gz | |
Merge branch 'master' of github.com:vanhauser-thc/AFLplusplus
Diffstat (limited to 'libdislocator')
| -rw-r--r-- | libdislocator/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdislocator/Makefile b/libdislocator/Makefile index 236667ec..cbaa05ea 100644 --- a/libdislocator/Makefile +++ b/libdislocator/Makefile @@ -24,15 +24,15 @@ CFLAGS += -Wall -D_FORTIFY_SOURCE=2 -g -Wno-pointer-sign all: libdislocator.so libdislocator.so: libdislocator.so.c ../config.h - $(CC) $(CFLAGS) -shared -fPIC $< -o $@ $(LDFLAGS) + $(CC) $(CFLAGS) -shared -fPIC $< -o ../$@ $(LDFLAGS) .NOTPARALLEL: clean clean: rm -f *.o *.so *~ a.out core core.[1-9][0-9]* - rm -f libdislocator.so + rm -f ../libdislocator.so install: all - install -m 755 libdislocator.so $${DESTDIR}$(HELPER_PATH) + install -m 755 ../libdislocator.so $${DESTDIR}$(HELPER_PATH) install -m 644 README.dislocator $${DESTDIR}$(HELPER_PATH) |
