Changeset 4203 for trunk/src/seismic_processing/ewspectra/makefile.ux
- Timestamp:
- 05/05/11 12:56:45 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/seismic_processing/ewspectra/makefile.ux
r4195 r4203 10 10 OBJS = $(SRCS:%.c=%.o) 11 11 12 SRCS c = compute_spectra.c13 OBJS c = $(SRCSc:%.c=%.o)12 SRCSa = activate_module.c 13 OBJSa = $(SRCSa:%.c=%.o) 14 14 15 15 SRCSs = sniffspectra.c … … 25 25 $(CC) $(CFLAGS) -c $< -o $@ 26 26 27 all: ewspectra compute_spectrasniffspectra27 all: ewspectra activate_module sniffspectra 28 28 29 29 ewspectra: $(OBJS) … … 31 31 cp ewspectra $(BINDIR) 32 32 33 compute_spectra: $(OBJSc)34 $(CC) $(GLOBALFLAGS) -o compute_spectra $(OBJSc) $(EW_LIBS) $(LDFLAGS)35 cp compute_spectra$(BINDIR)33 activate_module: $(OBJSa) 34 $(CC) $(GLOBALFLAGS) -o activate_module $(OBJSa) $(EW_LIBS) $(LDFLAGS) 35 cp activate_module $(BINDIR) 36 36 37 37 sniffspectra: $(OBJSs) … … 41 41 clean: 42 42 rm *.o 43 rm ewspectra compute_spectrasniffspectra43 rm ewspectra activate_module sniffspectra
Note: See TracChangeset
for help on using the changeset viewer.