Skip to content

Commit

Permalink
fix: Makefile is having problems with creating *.dll (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev4s committed Dec 2, 2022
1 parent 7447fe7 commit ae9d95d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CFLAGS = -Wall -Werror -fpic -std=gnu99

ifeq ($(OS),Windows_NT)
MKD = cmd /C mkdir
RM = cmd /C rmdir /Q /S
MKD = cmd //C mkdir
RM = cmd //C rmdir //Q //S
CC = gcc
TARGET := libfzf.dll
else
Expand Down

0 comments on commit ae9d95d

Please sign in to comment.