From 3b6451778721f90d93f8fb8f1c91c302e498ccf4 Mon Sep 17 00:00:00 2001 From: Jeremy Newton Date: Tue, 30 Nov 2021 10:29:30 -0500 Subject: [PATCH] Add Makefile to gitignore Calling cmake replaces this file, so no need to commit it. Change-Id: Ic4747cc9eebd9cbfc61d524a31d2025c04eda12e Signed-off-by: Jeremy Newton --- .gitignore | 1 + Makefile | 18 ------------------ 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 57f4774867..1140a6dcaa 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ patches-* build/ outgoing/ +Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index c306e90756..0000000000 --- a/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -.PHONY: all clean lnx64a lnx - -all: lnx64a - -deb: - $(MAKE) -C src deb - -rpm: - $(MAKE) -C src rpm - -lnx64a: - $(MAKE) -C src lnx64a - -lnx: - $(MAKE) -C src lnx - -clean: - $(MAKE) -C src clean