Add comments to old c preproc / m4 processing since gfortran is unable to
[WRF.git] / tools / Makefile
bloba2c0acf50b21d488d1a58c8f9e88e1ce208a22e8
1 .SUFFIXES: .c .o
3 CC_TOOLS = cc
4 CFLAGS = $(CC_TOOLS_CFLAGS) #-ansi
5 LDFLAGS =
6 DEBUG = -g
7 OBJ = registry.o my_strtok.o reg_parse.o data.o type.o misc.o \
8 gen_defs.o gen_allocs.o gen_mod_state_descr.o gen_scalar_indices.o \
9 gen_args.o gen_config.o sym.o symtab_gen.o gen_irr_diag.o \
10 gen_model_data_ord.o gen_interp.o gen_comms.o gen_scalar_derefs.o set_dim_strs.o gen_wrf_io.o\
11 gen_streams.o
13 registry : $(OBJ) standard.exe
14 $(CC_TOOLS) -o registry $(DEBUG) $(LDFLAGS) $(OBJ)
15 if [ -x /usr/bin/peflags.exe ] ; then /usr/bin/peflags.exe --stack-reserve=33554432 registry; fi
17 standard.exe : standard.o
18 $(CC_TOOLS) -o standard.exe $(DEBUG) $(LDFLAGS) standard.o
20 .c.o :
21 $(CC_TOOLS) $(CFLAGS) -c $(DEBUG) $<
23 clean:
24 /bin/rm -f $(OBJ) gen_comms.c standard.o
26 gen_comms.c : gen_comms.stub
27 /bin/cp gen_comms.stub gen_comms.c
29 # regenerate this list with "makedepend -Y *.c"
31 # DO NOT DELETE THIS LINE -- make depend depends on it.
33 data.o: registry.h protos.h data.h
34 gen_allocs.o: protos.h registry.h data.h
35 gen_args.o: protos.h registry.h data.h
36 gen_scalar_derefs.o: protos.h registry.h data.h
37 gen_config.o: protos.h registry.h data.h
38 gen_defs.o: protos.h registry.h data.h
39 gen_mod_state_descr.o: protos.h registry.h data.h
40 gen_model_data_ord.o: protos.h registry.h data.h
41 gen_scalar_indices.o: protos.h registry.h data.h
42 gen_wrf_io.o: protos.h registry.h data.h
43 misc.o: protos.h registry.h data.h
44 my_strtok.o: registry.h protos.h data.h
45 reg_parse.o: registry.h protos.h data.h
46 registry.o: protos.h registry.h data.h
47 sym.o: sym.h
48 type.o: registry.h protos.h data.h
49 gen_interp.o: registry.h protos.h data.h
50 gen_streams.o: registry.h protos.h data.h