diff options
author | kaa <kaa@laptosh.my.domain> | 2023-06-23 11:19:51 -0700 |
---|---|---|
committer | kaa <kaa@laptosh.my.domain> | 2023-06-23 11:19:51 -0700 |
commit | 8828e75a9ee7a5408ad00ad17e9878a2740cc866 (patch) | |
tree | bd60b53fb9896316ebc9928a30e0b0806b1c64ae /various/neoup/makefile |
"Initial."
Diffstat (limited to 'various/neoup/makefile')
-rw-r--r-- | various/neoup/makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/various/neoup/makefile b/various/neoup/makefile new file mode 100644 index 0000000..84d5ea7 --- /dev/null +++ b/various/neoup/makefile @@ -0,0 +1,15 @@ +CC = gcc +CFLAGS = -std=c89 -g -Wall -fdiagnostics-color=never +#CC = tcc +#CFLAGS = -Wall -g +LDFLAGS = +all: neoup + +.c: + $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< $(DLL) $(ICON) +clean: + rm -f neoup +install: all + cp neoup $(HOME)/bin +uninstall: + rm $(HOME)/bin/neoup |