[2759] | 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 gen_wrf_io.o \ |
---|
| 10 | gen_model_data_ord.o gen_interp.o gen_comms.o gen_scalar_derefs.o |
---|
| 11 | |
---|
| 12 | registry : $(OBJ) standard.exe |
---|
| 13 | $(CC_TOOLS) -o registry $(DEBUG) $(LDFLAGS) $(OBJ) |
---|
| 14 | |
---|
| 15 | standard.exe : standard.o |
---|
| 16 | $(CC_TOOLS) -o standard.exe $(DEBUG) $(LDFLAGS) standard.o |
---|
| 17 | |
---|
| 18 | .c.o : |
---|
| 19 | $(CC_TOOLS) $(CFLAGS) -c $(DEBUG) $< |
---|
| 20 | |
---|
| 21 | clean: |
---|
| 22 | /bin/rm -f $(OBJ) gen_comms.c standard.o |
---|
| 23 | |
---|
| 24 | gen_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 | |
---|
| 31 | data.o: registry.h protos.h data.h |
---|
| 32 | gen_allocs.o: protos.h registry.h data.h |
---|
| 33 | gen_args.o: protos.h registry.h data.h |
---|
| 34 | gen_scalar_derefs.o: protos.h registry.h data.h |
---|
| 35 | gen_config.o: protos.h registry.h data.h |
---|
| 36 | gen_defs.o: protos.h registry.h data.h |
---|
| 37 | gen_mod_state_descr.o: protos.h registry.h data.h |
---|
| 38 | gen_model_data_ord.o: protos.h registry.h data.h |
---|
| 39 | gen_scalar_indices.o: protos.h registry.h data.h |
---|
| 40 | gen_wrf_io.o: protos.h registry.h data.h |
---|
| 41 | misc.o: protos.h registry.h data.h |
---|
| 42 | my_strtok.o: registry.h protos.h data.h |
---|
| 43 | reg_parse.o: registry.h protos.h data.h |
---|
| 44 | registry.o: protos.h registry.h data.h |
---|
| 45 | sym.o: sym.h |
---|
| 46 | type.o: registry.h protos.h data.h |
---|
| 47 | gen_interp.o: registry.h protos.h data.h |
---|