In storage_traverse(), don't access cllnode directly after the hook.
[grace.git] / grconvert / Makefile
blob9744e68f1a8582bcdc4da3d6d14385da760fb155
1 #####################################################
2 # Makefile for grconvert #
3 #####################################################
4 # You should not change anything here. #
5 #####################################################
7 TOP=..
9 include $(TOP)/Make.conf
11 .SUFFIXES : .c $(O)
13 PROG = grconvert$(EXE)
15 SRCS = grconvert.c defaults.c readbin.c writeasc.c util.c
17 OBJS = grconvert$(O) defaults$(O) readbin$(O) writeasc$(O) util$(O)
19 CFLAGS = $(CFLAGS0) -I$(TOP)/include -I. $(CPPFLAGS)
21 LIBS = $(XDR_LIB) $(NOGUI_LIBS)
23 all : $(PROG)
25 $(PROG) : $(OBJS)
26 $(CC) -o $@ $(OBJS) $(LDFLAGS) $(LIBS)
28 $(OBJS) : grconvert.h
30 tests : dummy
32 links : dummy
34 clean :
35 $(RM) $(OBJS)
37 distclean :
38 $(RM) $(PROG) $(OBJS)
40 devclean :
41 $(RM) $(PROG) $(OBJS)
43 install : $(PROG)
44 $(MKINSTALLDIRS) $(DESTDIR)$(GRACE_HOME)/bin
45 $(INSTALL_PROGRAM) -s $(PROG) $(DESTDIR)$(GRACE_HOME)/bin/$(PROG)
47 dummy :