Merge pull request #684 from Ostrokrzew/make_fix

Fix for building OpenCAS
This commit is contained in:
Robert Baldyga 2021-02-10 11:43:54 +01:00 committed by GitHub
commit 1697f0d10b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,7 @@ sync:
#
$(TARGET): $(TARGET).a
@echo " LD " $@
@$(CC) $(CFLAGS) $(LDFLAGS) -o $(TARGET) $<
@$(CC) $(CFLAGS) -o $(TARGET) $< $(LDFLAGS)
$(TARGET).a: $(patsubst %,$(OBJDIR)%,$(OBJS))
@echo " AR " $@