From 7f398c4ad3e2076668b055dfd7f653126d31553d Mon Sep 17 00:00:00 2001 From: Jake Hageman Date: Thu, 12 Sep 2019 16:41:30 -0400 Subject: [PATCH] Fix #2, Include path and rm -f --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1bed5b6..3b1e59e 100644 --- a/Makefile +++ b/Makefile @@ -12,12 +12,11 @@ ## ## If this subsystem needs include files from another app, add the path here. ## -INCLUDE_PATH = \ --I.. +INCLUDE_PATH = all: gcc $(INCLUDE_PATH) -g -o cfe_ts_crc cfe_ts_crc.c clean: - rm cfe_ts_crc + rm -f cfe_ts_crc