From bbbc9f428b7226f1ddac1a78af63e71a96c0b90f Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 6 Jan 2023 14:16:47 -0800 Subject: add support for reading from file; some other stuff --- Makefile | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index aa67df9..d49039e 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,14 @@ -# the compiler: gcc for C program, define as g++ for C++ CC = gcc -# compiler flags: -# -g adds debugging information to the executable file -# -Wall turns on most, but not all, compiler warnings CFLAGS = -g -Wall -# the build target executable: -TARGET = myprog +nxs: + cc src/*.c $(CFLAGS) -o nxs -all: $(TARGET) +clean: + -rm nxs + +install: + cp nxs /usr/local/bin/ + +uninstall: + -rm /usr/local/bin/nxs -- cgit