aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 947ba94..6a6a2b7 100644
--- a/Makefile
+++ b/Makefile
@@ -4,11 +4,16 @@ PREFIX = $(HOME)/.local
CC = gcc
CFLAGS += -std=c99 -Wall -Wextra -Wshadow -pedantic
+CC_WIN32 = i686-w64-mingw32-gcc
+
default: $(NAME)
$(NAME): $(NAME).c config.h
$(CC) $(CFLAGS) -o $(NAME) $(NAME).c
+$(NAME).exe: $(NAME).c config.h
+ $(CC_WIN32) $(CFLAGS) -o $(NAME).exe $(NAME).c
+
install: $(NAME)
install -d $(DESTDIR)$(PREFIX)/bin/
install -m 755 $(NAME) $(DESTDIR)$(PREFIX)/bin/