Don't create empty directory in Makefile

This commit is contained in:
Emmanuel Marty 2020-11-25 18:21:53 +01:00 committed by GitHub
parent 710257970e
commit d1f067ef15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,6 @@ OBJS += $(OBJDIR)/src/libdivsufsort/lib/trsort.o
all: $(APP)
$(APP): $(OBJS)
@mkdir -p ../../bin/posix
$(CC) $^ $(LDFLAGS) -o $(APP)
$(STRIP) $(APP)