1 | .SUFFIXES: .c .o |
---|
2 | |
---|
3 | CC_TOOLS = cc |
---|
4 | 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 \ |
---|
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 |
---|
12 | |
---|
13 | registry : $(OBJ) standard.exe |
---|
14 | $(CC_TOOLS) -o registry $(DEBUG) $(LDFLAGS) $(OBJ) |
---|
15 | |
---|
16 | standard.exe : standard.o |
---|
17 | $(CC_TOOLS) -o standard.exe $(DEBUG) $(LDFLAGS) standard.o |
---|
18 | |
---|
19 | .c.o : |
---|
20 | $(CC_TOOLS) $(CFLAGS) -c $(DEBUG) $< |
---|
21 | |
---|
22 | clean: |
---|
23 | /bin/rm -f $(OBJ) gen_comms.c standard.o |
---|
24 | |
---|
25 | gen_comms.c : gen_comms.stub |
---|
26 | /bin/cp gen_comms.stub gen_comms.c |
---|
27 | |
---|
28 | # regenerate this list with "makedepend -Y *.c" |
---|
29 | |
---|
30 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
---|
31 | |
---|
32 | data.o: registry.h protos.h data.h |
---|
33 | gen_allocs.o: protos.h registry.h data.h |
---|
34 | gen_args.o: protos.h registry.h data.h |
---|
35 | gen_scalar_derefs.o: protos.h registry.h data.h |
---|
36 | gen_config.o: protos.h registry.h data.h |
---|
37 | gen_defs.o: protos.h registry.h data.h |
---|
38 | gen_mod_state_descr.o: protos.h registry.h data.h |
---|
39 | gen_model_data_ord.o: protos.h registry.h data.h |
---|
40 | gen_scalar_indices.o: protos.h registry.h data.h |
---|
41 | gen_wrf_io.o: protos.h registry.h data.h |
---|
42 | misc.o: protos.h registry.h data.h |
---|
43 | my_strtok.o: registry.h protos.h data.h |
---|
44 | reg_parse.o: registry.h protos.h data.h |
---|
45 | registry.o: protos.h registry.h data.h |
---|
46 | sym.o: sym.h |
---|
47 | type.o: registry.h protos.h data.h |
---|
48 | gen_interp.o: registry.h protos.h data.h |
---|
49 | gen_streams.o: registry.h protos.h data.h |
---|