source: trunk/WRF.COMMON/WRFV3/tools/Makefile @ 3431

Last change on this file since 3431 was 2759, checked in by aslmd, 2 years ago

adding unmodified code from WRFV3.0.1.1, expurged from useless data +1M size

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