blob: a83bb1181b236d19beee40a1dd3c2d8f6ccd1611 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
--- Makefile.orig Sat Jun 5 00:07:14 1999
+++ Makefile Sat Mar 4 08:43:28 2000
@@ -22,12 +22,12 @@
CPP = $(CC) -E
#CPP = /lib/cpp
#CFLAGS = -O2 # -g # -I/usr/local/lib/malloc-debug -DMALLOC_FUNC_CHECK
-CFLAGS = -O
+#CFLAGS = -O
#-Wall -Wcomment \
#-Wtraditional -Wshadow \
#-Wpointer-arith -Wcast-qual -Wcast-align -Wconversion \
#-Waggregate-return -Wmissing-prototypes -Wnested-externs
-#LDFLAGS = -s # -lmalloc # /usr/local/lib/malloc-debug/libmalloc.a
+LDFLAGS = -s # -lmalloc # /usr/local/lib/malloc-debug/libmalloc.a
MAKE = make
@@ -36,6 +36,8 @@
all: ymakefile
$(MAKE) $(MFLAGS) -f ymakefile all
+inews: ymakefile
+ $(MAKE) $(MFLAGS) -f ymakefile inews
touch: ymakefile
$(MAKE) -f ymakefile -t all
@@ -97,3 +99,5 @@
man/nn.1.D: man/nn.1
sh SPLITNN1
+install:
+ ./inst n
|