summaryrefslogtreecommitdiff
path: root/various/neoup/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'various/neoup/makefile')
-rw-r--r--various/neoup/makefile15
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