Changeset 419 for trunk/Jgraph/makefile
- Timestamp:
- 02/27/08 07:09:03 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Jgraph/makefile
r418 r419 7 7 # jgraph.1 to be the directory containing the example jgraphs. 8 8 9 CC = gcc -LCC9 CC = cc 10 10 11 11 OBJS = draw.o \ 12 12 edit.o \ 13 jgraph.o \14 13 list.o \ 15 14 printline.o \ … … 43 42 wortman.jps 44 43 44 LOADLIBES = -lm 45 45 46 46 all: jgraph … … 58 58 .tex.dvi: 59 59 latex $*.tex 60 .c.o:61 $(CC) -c -g $*.c60 #.c.o: 61 # $(CC) -c -g $*.c 62 62 63 63 64 64 jgraph: $(OBJS) 65 $(CC) -g $(OBJS) -lm -o jgraph65 # $(CC) -g $(OBJS) -lm -o jgraph 66 66 67 67 sin: sin.o … … 76 76 sin3.jps: sin3.pts 77 77 tree1.jps: tree.awk 78 ( echo "4 3" | nawk -f tree.awk ; echo "xaxis size 5.4" ) | \78 ( echo "4 3" | awk -f tree.awk ; echo "xaxis size 5.4" ) | \ 79 79 jgraph -P > tree1.jps 80 80 tree2.jps: tree.awk 81 ( echo "5 2" | nawk -f tree.awk ; echo "xaxis size 5.4" ) | \81 ( echo "5 2" | awk -f tree.awk ; echo "xaxis size 5.4" ) | \ 82 82 jgraph -P > tree2.jps 83 83 … … 94 94 token.o: token.c list.h 95 95 clean: 96 rm -f *.o a.out *.jps 96 rm -f *.o a.out *.jps jgraph
Note:
See TracChangeset
for help on using the changeset viewer.