Merge pull request #120 from idris-lang/fix_build

Fix Windows build
This commit is contained in:
Niklas Larsson 2020-05-23 19:12:19 +02:00 committed by GitHub
commit a92fb3a3b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ $(LIBTARGET): $(OBJS)
$(RANLIB) $@
$(DYLIBTARGET): $(OBJS)
$(CC) -shared $(LDFLAGS) -o $@ $^
$(CC) -shared -o $@ $^ $(LDFLAGS)
-include $(DEPS)