diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-06 14:16:47 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-06 14:16:47 -0800 |
commit | bbbc9f428b7226f1ddac1a78af63e71a96c0b90f (patch) | |
tree | 6cbafd401afd6c9fec326760bf96d605c87dfd1e /Makefile | |
parent | 9083582a5d3bfc8fae859b2ce124d86ad7420dcc (diff) |
add support for reading from file; some other stuff
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -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 |