From e15304621938eda6aa30cbb8b91c37c48f2e2b02 Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Tue, 17 Jan 2017 22:08:48 -0500 Subject: [PATCH] The nms-ncurses buid should be named nms --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 252e982..3953217 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ sneakers: $(OBJ)/nms.o $(OBJ)/sneakers.o | $(BIN) all: nms sneakers nms-ncurses: $(OBJ)/nms-ncurses.o $(OBJ)/main.o | $(BIN) - $(CC) $(CFLAGS) -o $(BIN)/$@ $^ -lncurses + $(CC) $(CFLAGS) -o $(BIN)/nms $^ -lncurses $(OBJ)/%.o: $(SRC)/%.c | $(OBJ) $(CC) $(CFLAGS) -o $@ -c $<