summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code2/Makefile.new
diff options
context:
space:
mode:
Diffstat (limited to 'comp/lucas-standen-NEA/code2/Makefile.new')
-rw-r--r--comp/lucas-standen-NEA/code2/Makefile.new25
1 files changed, 0 insertions, 25 deletions
diff --git a/comp/lucas-standen-NEA/code2/Makefile.new b/comp/lucas-standen-NEA/code2/Makefile.new
deleted file mode 100644
index 8dcb4db..0000000
--- a/comp/lucas-standen-NEA/code2/Makefile.new
+++ /dev/null
@@ -1,25 +0,0 @@
-CC=cc
-CFLAGS=-O3
-
-SRC = zpy.c comp.c tokenizer.c fileread.c util.c appendsnprintf.c
-OBJ = ${SRC:.c=.o}
-
-all: zpy
-
-.c.o:
- ${CC} -c ${CFLAGS} $<
-zpy: ${OBJ}
- ${CC} -o $@ ${OBJ}
- cd stdlib && make
-install: all
- cp zpy /usr/local/bin/zpy
- cd stdlib && make install
- cd zpypkg && make install
-clean:
- rm -rf zpy*.o
- cd stdlib && make clean
- cd examples && make clean
-uninstall:
- rm /usr/local/bin/zpy
-
-.PHONY: all clean install uninstall