From 82a360fca0e056781010560ad38be7def13cca37 Mon Sep 17 00:00:00 2001 From: Ricardo Branco Date: Fri, 19 Jan 2024 20:29:37 +0100 Subject: [PATCH] Use GNUmakefile for GNU make --- unix/{Makefile.gnu => GNUmakefile} | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) rename unix/{Makefile.gnu => GNUmakefile} (70%) diff --git a/unix/Makefile.gnu b/unix/GNUmakefile similarity index 70% rename from unix/Makefile.gnu rename to unix/GNUmakefile index 97e4875..1819afb 100644 --- a/unix/Makefile.gnu +++ b/unix/GNUmakefile @@ -3,10 +3,8 @@ CFLAGS = -Wall -Wextra -O2 LDFLAGS = -lkvm -lutil OBJS = -CC = gcc - $(BIN): restartable.c $(OBJS) - $(CC) $(CFLAGS) -o $@ -c $< $(OBJS) $(LDFLAGS) + $(CC) $(CFLAGS) -o $@ $< $(OBJS) $(LDFLAGS) clean: rm -f $(PROC) $(OBJS)