Changeset 3186
- Timestamp:
- 12/16/07 06:50:31 (13 years ago)
- Location:
- trunk/src/data_exchange
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/data_exchange/coaxtoring/makefile.ux
r2874 r3186 8 8 # Revision history: 9 9 # $Log$ 10 # Revision 1.3 2007/12/16 14:50:31 paulf 11 # cflags fixed for linux 12 # 10 13 # Revision 1.2 2007/03/28 17:07:01 paulf 11 14 # fixed unix makefile for MAC OS X … … 34 37 35 38 coaxtoring: $(OBJS) 36 cc-o $B/coaxtoring $(OBJS) $(LIBS)39 $(CC) $(CFLAGS) -o $B/coaxtoring $(OBJS) $(LIBS) 37 40 38 41 lint: -
trunk/src/data_exchange/condenselogo/makefile.ux
r2543 r3186 10 10 11 11 condenselogo: $(OBJ) 12 cc-o $B/condenselogo $(OBJ) -lm -lpthread12 $(CC) $(CFLAGS) -o $B/condenselogo $(OBJ) -lm -lpthread 13 13 14 14 .c.o: 15 cc-c ${CFLAGS} $<15 $(CC) -c ${CFLAGS} $< 16 16 17 17 lint: -
trunk/src/data_exchange/ew2file/makefile.ux
r1958 r3186 7 7 # Revision history: 8 8 # $Log$ 9 # Revision 1.2 2007/12/16 14:50:31 paulf 10 # cflags fixed for linux 11 # 9 12 # Revision 1.1 2005/07/27 18:19:17 friberg 10 13 # added UNIX makefile … … 27 30 28 31 $B/$(APP): $(BINARIES) 29 cc-o $B/ew2file $(CFLAGS) $(BINARIES) -lpthread32 $(CC) $(CFLAGS) -o $B/ew2file $(CFLAGS) $(BINARIES) -lpthread 30 33 31 34 -
trunk/src/data_exchange/export/makefile.ux
r2863 r3186 8 8 # Revision history: 9 9 # $Log$ 10 # Revision 1.4 2007/12/16 14:50:31 paulf 11 # cflags fixed for linux 12 # 10 13 # Revision 1.3 2007/03/28 15:26:44 paulf 11 14 # minor MACOSX changes, mostly removing malloc.h since that should be defined in platform.h already … … 58 61 59 62 export_generic: $(BINARIES) genericfilter.o 60 cc-o $B/export_generic $(BINARIES) genericfilter.o -mt -lpthread -lc63 $(CC) $(CFLAGS) -o $B/export_generic $(BINARIES) genericfilter.o -mt -lpthread -lc 61 64 62 65 export_scnl: $(BINARIES) scnfilter.o $L/rdpickcoda.o 63 cc-o $B/export_scnl $(BINARIES) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc66 $(CC) $(CFLAGS) -o $B/export_scnl $(BINARIES) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc 64 67 65 68 export_scnl_pri: $(BINARIESPRI) scnfilter.o $L/rdpickcoda.o 66 cc-o $B/export_scnl_pri $(BINARIESPRI) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc69 $(CC) $(CFLAGS) -o $B/export_scnl_pri $(BINARIESPRI) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc 67 70 68 71 export_gen_actv: $(BINARIESACTV) genericfilter.o 69 cc-o $B/export_gen_actv $(BINARIESACTV) genericfilter.o -mt -lpthread -lc72 $(CC) $(CFLAGS) -o $B/export_gen_actv $(BINARIESACTV) genericfilter.o -mt -lpthread -lc 70 73 71 74 export_scnl_actv: $(BINARIESACTV) scnfilter.o $L/rdpickcoda.o 72 cc-o $B/export_scnl_actv $(BINARIESACTV) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc75 $(CC) $(CFLAGS) -o $B/export_scnl_actv $(BINARIESACTV) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc 73 76 74 77 export_ack: $(BINARIESACK) genericfilter.o 75 cc-o $B/export_ack $(BINARIESACK) genericfilter.o -mt -lpthread -lc78 $(CC) $(CFLAGS) -o $B/export_ack $(BINARIESACK) genericfilter.o -mt -lpthread -lc 76 79 77 80 export_scnl_ack: $(BINARIESACK) scnfilter.o $L/rdpickcoda.o 78 cc-o $B/export_scnl_ack $(BINARIESACK) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc81 $(CC) $(CFLAGS) -o $B/export_scnl_ack $(BINARIESACK) scnfilter.o $L/rdpickcoda.o -mt -lpthread -lc 79 82 80 83 -
trunk/src/data_exchange/file2ew/makefile.ux
r1920 r3186 8 8 # Revision history: 9 9 # $Log$ 10 # Revision 1.2 2007/12/16 14:50:31 paulf 11 # cflags fixed for linux 12 # 10 13 # Revision 1.1 2005/07/25 20:16:19 friberg 11 14 # added in Unix makefile … … 35 38 36 39 file2ew: $(BINARIES) raw2ew.o 37 cc-o $B/file2ew $(BINARIES) raw2ew.o $(LIBS)40 $(CC) $(CFLAGS) -o $B/file2ew $(BINARIES) raw2ew.o $(LIBS) 38 41 39 42 sm_csmip2ew: $(SMBIN) csmip2ew.o 40 cc-o $B/sm_csmip2ew $(SMBIN) csmip2ew.o $(LIBS)43 $(CC) $(CFLAGS) -o $B/sm_csmip2ew $(SMBIN) csmip2ew.o $(LIBS) 41 44 42 45 sm_nsmp2ew: $(SMBIN) nsmp2ew.o 43 cc-o $B/sm_nsmp2ew $(SMBIN) nsmp2ew.o $(LIBS)46 $(CC) $(CFLAGS) -o $B/sm_nsmp2ew $(SMBIN) nsmp2ew.o $(LIBS) 44 47 45 48 sm_redi2ew: $(SMBIN) redi2ew.o 46 cc-o $B/sm_redi2ew $(SMBIN) redi2ew.o $(LIBS)49 $(CC) $(CFLAGS) -o $B/sm_redi2ew $(SMBIN) redi2ew.o $(LIBS) 47 50 48 51 sm_terra2ew: $(SMBIN) terra2ew.o 49 cc-o $B/sm_terra2ew $(SMBIN) terra2ew.o $(LIBS)52 $(CC) $(CFLAGS) -o $B/sm_terra2ew $(SMBIN) terra2ew.o $(LIBS) 50 53 51 54 sm_tremor2ew: $(SMBIN) tremor2ew.o 52 cc-o $B/sm_tremor2ew $(SMBIN) tremor2ew.o $(LIBS)55 $(CC) $(CFLAGS) -o $B/sm_tremor2ew $(SMBIN) tremor2ew.o $(LIBS) 53 56 54 57 -
trunk/src/data_exchange/getfileII/makefile.ux
r1921 r3186 13 13 14 14 getfileII: $O 15 cc-o getfileII $O -lm -lc15 $(CC) $(CFLAGS) -o getfileII $O -lm -lc 16 16 17 17 clean: -
trunk/src/data_exchange/getfile_ew/makefile.ux
r2872 r3186 8 8 # Revision history: 9 9 # $Log$ 10 # Revision 1.3 2007/12/16 14:50:31 paulf 11 # cflags fixed for linux 12 # 10 13 # Revision 1.2 2007/03/28 17:03:11 paulf 11 14 # cleaned up OS dependencies relateing to MACOSX … … 26 29 27 30 getfile_ew: getfile_ew.o getfile_socket.o 28 cc-o $B/getfile_ew getfile_ew.o getfile_socket.o \31 $(CC) $(CFLAGS) -o $B/getfile_ew getfile_ew.o getfile_socket.o \ 29 32 $L/getutil.o $L/kom.o $L/dirops_ew.o $L/transport.o \ 30 33 $L/sleep_ew.o $L/logit.o $L/time_ew.o $L/threads_ew.o \ -
trunk/src/data_exchange/import_generic/makefile.ux
r2868 r3186 8 8 # Revision history: 9 9 # $Log$ 10 # Revision 1.4 2007/12/16 14:50:31 paulf 11 # cflags fixed for linux 12 # 10 13 # Revision 1.3 2007/03/28 15:42:27 paulf 11 14 # minor MACOSX directives … … 37 40 38 41 import_generic: import_generic.o $(EWBIN) 39 cc-o $B/import_generic import_generic.o $(EWBIN) $(LIBS)42 $(CC) $(CFLAGS) -o $B/import_generic import_generic.o $(EWBIN) $(LIBS) 40 43 41 44 import_ack: import_ack.o $(EWBIN) 42 cc-o $B/import_ack import_ack.o $(EWBIN) $(LIBS)45 $(CC) $(CFLAGS) -o $B/import_ack import_ack.o $(EWBIN) $(LIBS) 43 46 44 47 -
trunk/src/data_exchange/import_pasv/makefile.ux
r2876 r3186 8 8 # Revision history: 9 9 # $Log$ 10 # Revision 1.3 2007/12/16 14:50:31 paulf 11 # cflags fixed for linux 12 # 10 13 # Revision 1.2 2007/03/28 17:13:16 paulf 11 14 # patched for _MACOSX flags and compilation … … 41 44 42 45 import_gen_pasv: $(BINARIES) 43 cc-o $B/import_gen_pasv $(BINARIES) -mt -lpthread44 # cc-o $B/import_gen_pasv $(BINARIES) -lnsl -lsocket -mt -lposix4 -lthread46 $(CC) $(CFLAGS) $(CFLAGS) -o $B/import_gen_pasv $(BINARIES) -mt -lpthread 47 # $(CC) $(CFLAGS) -o $B/import_gen_pasv $(BINARIES) -lnsl -lsocket -mt -lposix4 -lthread 45 48 46 49 -
trunk/src/data_exchange/liss/makefile.ux
r2871 r3186 7 7 # Revision history: 8 8 # $Log$ 9 # Revision 1.4 2007/12/16 14:50:31 paulf 10 # cflags fixed for linux 11 # 9 12 # Revision 1.3 2007/03/28 16:56:11 paulf 10 13 # adjusted makefile for MACOSX by removing -lnsl … … 49 52 50 53 liss2ew: liss2ew.o $(EWLIBS) $(SEEDLIBS) 51 cc-o liss2ew liss2ew.o $(EWLIBS) $(SEEDLD) $(SYSLIBS)54 $(CC) $(CFLAGS) -o liss2ew liss2ew.o $(EWLIBS) $(SEEDLD) $(SYSLIBS) 52 55 53 56 ew2liss: $(E2LOBJS) $(EWLIBS) $(SEEDLIBS) 54 cc-o ew2liss $(E2LOBJS) $(EWLIBS) $(SEEDLD) $(SYSLIBS)57 $(CC) $(CFLAGS) -o ew2liss $(E2LOBJS) $(EWLIBS) $(SEEDLD) $(SYSLIBS) 55 58 56 59 liss2ew-test: liss2ew-test.o $(EWLIBS) $(SEEDLIBS) 57 cc-o liss2ew-test liss2ew-test.o $(EWLIBS) $(SEEDLD) $(SYSLIBS)60 $(CC) $(CFLAGS) -o liss2ew-test liss2ew-test.o $(EWLIBS) $(SEEDLD) $(SYSLIBS) 58 61 59 62 dumpseed: dumpseed.o readseedport.o $(SEEDLIBS) 60 cc-o dumpseed dumpseed.o readseedport.o $(SEEDLD) $(SYSLIBS)63 $(CC) $(CFLAGS) -o dumpseed dumpseed.o readseedport.o $(SEEDLD) $(SYSLIBS) 61 64 62 65 $(SL)/libdcc_seed.a: -
trunk/src/data_exchange/makehbfile/makefile.ux
r2875 r3186 10 10 11 11 makehbfile: $O 12 cc-o makehbfile $O -lm -lc12 $(CC) $(CFLAGS) -o makehbfile $O -lm -lc 13 13 14 14 clean: -
trunk/src/data_exchange/ringdup/makefile.ux
r2869 r3186 5 5 # Revision history: 6 6 # $Log$ 7 # Revision 1.4 2007/12/16 14:50:31 paulf 8 # cflags fixed for linux 9 # 7 10 # Revision 1.3 2007/03/28 16:51:38 paulf 8 11 # removed malloc.h and tweeked make for MACOSX … … 30 33 31 34 ringdup_generic: $(BINARIES) $E/genericfilter.o 32 cc-o $B/ringdup_generic $(BINARIES) $E/genericfilter.o $(LIBS)35 $(CC) $(CFLAGS) -o $B/ringdup_generic $(BINARIES) $E/genericfilter.o $(LIBS) 33 36 34 37 ringdup_scn: $(BINARIES) $E/scnfilter.o 35 cc-o $B/ringdup_scn $(BINARIES) $L/chron3.o $L/rdpickcoda.o $E/scnfilter.o $(LIBS)38 $(CC) $(CFLAGS) -o $B/ringdup_scn $(BINARIES) $L/chron3.o $L/rdpickcoda.o $E/scnfilter.o $(LIBS) 36 39 37 40 -
trunk/src/data_exchange/ringtocoax/makefile.ux
r2864 r3186 8 8 # Revision history: 9 9 # $Log$ 10 # Revision 1.3 2007/12/16 14:50:31 paulf 11 # cflags fixed for linux 12 # 10 13 # Revision 1.2 2007/03/28 15:28:10 paulf 11 14 # removed -lnsl link … … 32 35 33 36 ringtocoax: $(RINGTOCOAX) 34 cc-o $B/ringtocoax $(RINGTOCOAX) -lm -lpthread35 # cc-o $B/ringtocoax $(RINGTOCOAX) -lm -lsocket -lnsl -lposix437 $(CC) $(CFLAGS) -o $B/ringtocoax $(RINGTOCOAX) -lm -lpthread 38 # $(CC) $(CFLAGS) -o $B/ringtocoax $(RINGTOCOAX) -lm -lsocket -lnsl -lposix4 36 39 37 40 -
trunk/src/data_exchange/scn_convert/makefile.ux
r2831 r3186 6 6 # Revision history: 7 7 # $Log$ 8 # Revision 1.3 2007/12/16 14:50:31 paulf 9 # cflags fixed for linux 10 # 8 11 # Revision 1.2 2007/03/22 13:49:48 ilya 9 12 # Fixed unfunctional makefile.ux … … 29 32 scn2scnl: scn2scnl.o scn_config.o to_pick_scnl.o to_coda_scnl.o \ 30 33 scn_convert.o to_trace_scnl.o $(BIN) 31 cc-o $B/scn2scnl scn2scnl.o scn_config.o to_pick_scnl.o \34 $(CC) $(CFLAGS) -o $B/scn2scnl scn2scnl.o scn_config.o to_pick_scnl.o \ 32 35 to_coda_scnl.o to_trace_scnl.o scn_convert.o $(BIN) -lm -lpthread 33 36 34 37 scnl2scn: scnl2scn.o scnl_config.o to_pick2k.o to_coda2k.o \ 35 38 scnl_convert.o to_trace_scn.o $(BIN) 36 cc-o $B/scnl2scn scnl2scn.o scnl_config.o to_pick2k.o \39 $(CC) $(CFLAGS) -o $B/scnl2scn scnl2scn.o scnl_config.o to_pick2k.o \ 37 40 to_coda2k.o scnl_convert.o to_trace_scn.o $(BIN) -lm -lpthread 38 41 -
trunk/src/data_exchange/sendfileII/makefile.ux
r1931 r3186 14 14 15 15 sendfileII: $O 16 cc-o sendfileII $O -lm -lc16 $(CC) $(CFLAGS) -o sendfileII $O -lm -lc 17 17 18 18 clean: -
trunk/src/data_exchange/slink2ew/makefile.ux
r2861 r3186 22 22 23 23 slink2ew: slink2ew.o $(EWLIBS) $(LSLIBS) 24 cc-o slink2ew slink2ew.o $(EWLIBS) $(LSLD) $(SYSLIBS)24 $(CC) $(CFLAGS) -o slink2ew slink2ew.o $(EWLIBS) $(LSLD) $(SYSLIBS) 25 25 26 26 $(LS)/libslink.a:
Note: See TracChangeset
for help on using the changeset viewer.