From f619b5933c9f966181e6da03ceff57d62909333c Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 4 May 2020 10:22:59 -0400 Subject: [PATCH] Add makefile for compilation The C utilities are easy enough to build with a Makefile. --- confluent_deploy/utils/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 confluent_deploy/utils/Makefile diff --git a/confluent_deploy/utils/Makefile b/confluent_deploy/utils/Makefile new file mode 100644 index 00000000..3a2a4922 --- /dev/null +++ b/confluent_deploy/utils/Makefile @@ -0,0 +1,13 @@ +CC := gcc +CFLAGS := -Os +TARGETS := copernicus autocons + +all: $(TARGETS) clortho + +clortho: clortho.c + $(CC) $(CFLAGS) -o $@ $^ -lcrypt + strip -s $@ + +$(TARGETS): % : %.c + $(CC) $(CFLAGS) -o $@ $^ + strip -s $@