@@ -269,7 +269,6 @@ SRC = $(SRCDIR)/dm_ansi.f90 \
269269 $(SRCDIR ) /dm_env.f90 \
270270 $(SRCDIR ) /dm_error.f90 \
271271 $(SRCDIR ) /dm_fcgi.f90 \
272- $(SRCDIR ) /dm_fifo.f90 \
273272 $(SRCDIR ) /dm_file.f90 \
274273 $(SRCDIR ) /dm_filter.f90 \
275274 $(SRCDIR ) /dm_format.f90 \
@@ -322,12 +321,14 @@ SRC = $(SRCDIR)/dm_ansi.f90 \
322321 $(SRCDIR ) /dm_observ.f90 \
323322 $(SRCDIR ) /dm_path.f90 \
324323 $(SRCDIR ) /dm_person.f90 \
325- $(SRCDIR ) /dm_pipe.f90 \
326324 $(SRCDIR ) /dm_platform.F90 \
327325 $(SRCDIR ) /dm_plot.f90 \
326+ $(SRCDIR ) /dm_posix.f90 \
327+ $(SRCDIR ) /dm_posix_fifo.f90 \
328328 $(SRCDIR ) /dm_posix_mqueue.f90 \
329329 $(SRCDIR ) /dm_posix_mqueue_util.f90 \
330330 $(SRCDIR ) /dm_posix_mutex.f90 \
331+ $(SRCDIR ) /dm_posix_pipe.f90 \
331332 $(SRCDIR ) /dm_posix_sem.f90 \
332333 $(SRCDIR ) /dm_posix_signal.f90 \
333334 $(SRCDIR ) /dm_posix_thread.f90 \
@@ -344,7 +345,6 @@ SRC = $(SRCDIR)/dm_ansi.f90 \
344345 $(SRCDIR ) /dm_statistics.f90 \
345346 $(SRCDIR ) /dm_string.f90 \
346347 $(SRCDIR ) /dm_sync.f90 \
347- $(SRCDIR ) /dm_system.f90 \
348348 $(SRCDIR ) /dm_target.f90 \
349349 $(SRCDIR ) /dm_test.f90 \
350350 $(SRCDIR ) /dm_time.f90 \
@@ -395,7 +395,6 @@ OBJ = dm_ansi.o \
395395 dm_env.o \
396396 dm_error.o \
397397 dm_fcgi.o \
398- dm_fifo.o \
399398 dm_file.o \
400399 dm_filter.o \
401400 dm_format.o \
@@ -448,12 +447,14 @@ OBJ = dm_ansi.o \
448447 dm_observ.o \
449448 dm_path.o \
450449 dm_person.o \
451- dm_pipe.o \
452450 dm_platform.o \
453451 dm_plot.o \
452+ dm_posix.o \
453+ dm_posix_fifo.o \
454454 dm_posix_mqueue.o \
455455 dm_posix_mqueue_util.o \
456456 dm_posix_mutex.o \
457+ dm_posix_pipe.o \
457458 dm_posix_sem.o \
458459 dm_posix_signal.o \
459460 dm_posix_thread.o \
@@ -470,7 +471,6 @@ OBJ = dm_ansi.o \
470471 dm_statistics.o \
471472 dm_string.o \
472473 dm_sync.o \
473- dm_system.o \
474474 dm_target.o \
475475 dm_test.o \
476476 dm_time.o \
@@ -573,6 +573,7 @@ test: dmtestapi \
573573 dmtesthtml \
574574 dmtestid \
575575 dmtestipc \
576+ dmtestipcmutex \
576577 dmtestipcthread \
577578 dmtestjob \
578579 dmtestjson \
@@ -588,9 +589,10 @@ test: dmtestapi \
588589 dmtestnml \
589590 dmtestobserv \
590591 dmtestpath \
591- dmtestpipe \
592592 dmtestplot \
593+ dmtestposix \
593594 dmtestposixmqueue \
595+ dmtestposixpipe \
594596 dmtestposixthread \
595597 dmtestregex \
596598 dmtestroff \
@@ -599,7 +601,6 @@ test: dmtestapi \
599601 dmtestserial \
600602 dmteststatistics \
601603 dmteststring \
602- dmtestsystem \
603604 dmtesttime \
604605 dmtesttty \
605606 dmtestunit \
@@ -816,9 +817,6 @@ dm_error.o: $(SRCDIR)/dm_error.f90
816817dm_fcgi.o : $(SRCDIR ) /dm_fcgi.f90
817818 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_fcgi.f90
818819
819- dm_fifo.o : $(SRCDIR ) /dm_fifo.f90
820- $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_fifo.f90
821-
822820dm_file.o : $(SRCDIR ) /dm_file.f90
823821 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_file.f90
824822
@@ -975,15 +973,18 @@ dm_path.o: $(SRCDIR)/dm_path.f90
975973dm_person.o : $(SRCDIR ) /dm_person.f90
976974 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_person.f90
977975
978- dm_pipe.o : $(SRCDIR ) /dm_pipe.f90
979- $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_pipe.f90
980-
981976dm_platform.o : $(SRCDIR ) /dm_platform.F90
982977 $(FC ) $(FFLAGS ) $(PPFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_platform.F90
983978
984979dm_plot.o : $(SRCDIR ) /dm_plot.f90
985980 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_plot.f90
986981
982+ dm_posix.o : $(SRCDIR ) /dm_posix.f90
983+ $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_posix.f90
984+
985+ dm_posix_fifo.o : $(SRCDIR ) /dm_posix_fifo.f90
986+ $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_posix_fifo.f90
987+
987988dm_posix_mqueue.o : $(SRCDIR ) /dm_posix_mqueue.f90
988989 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_posix_mqueue.f90
989990
@@ -993,6 +994,9 @@ dm_posix_mqueue_util.o: $(SRCDIR)/dm_posix_mqueue_util.f90
993994dm_posix_mutex.o : $(SRCDIR ) /dm_posix_mutex.f90
994995 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_posix_mutex.f90
995996
997+ dm_posix_pipe.o : $(SRCDIR ) /dm_posix_pipe.f90
998+ $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_posix_pipe.f90
999+
9961000dm_posix_sem.o : $(SRCDIR ) /dm_posix_sem.f90
9971001 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_posix_sem.f90
9981002
@@ -1041,9 +1045,6 @@ dm_string.o: $(SRCDIR)/dm_string.f90
10411045dm_sync.o : $(SRCDIR ) /dm_sync.f90
10421046 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_sync.f90
10431047
1044- dm_system.o : $(SRCDIR ) /dm_system.f90
1045- $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_system.f90
1046-
10471048dm_target.o : $(SRCDIR ) /dm_target.f90
10481049 $(FC ) $(FFLAGS ) $(LIBFLAGS ) $(MODFLAGS ) -c $(SRCDIR ) /dm_target.f90
10491050
@@ -1119,12 +1120,7 @@ $(TARGET): $(SRC)
11191120 @$(MAKE ) dm_id.o
11201121 @$(MAKE ) dm_net.o
11211122 @$(MAKE ) dm_uuid.o
1122- @$(MAKE ) dm_pipe.o
1123- @$(MAKE ) dm_freebsd.o
1124- @$(MAKE ) dm_linux.o
1125- @$(MAKE ) dm_system.o
11261123 @$(MAKE ) dm_dp.o
1127- @$(MAKE ) dm_fifo.o
11281124 @$(MAKE ) dm_node.o
11291125 @$(MAKE ) dm_sensor.o
11301126 @$(MAKE ) dm_target.o
@@ -1139,11 +1135,13 @@ $(TARGET): $(SRC)
11391135 @$(MAKE ) dm_arg_parser.o
11401136 @$(MAKE ) dm_job.o
11411137 @$(MAKE ) dm_job_list.o
1142- @$(MAKE ) dm_plot.o
1143- @$(MAKE ) dm_report.o
1144- @$(MAKE ) dm_regex.o
11451138 @$(MAKE ) dm_sync.o
11461139 @$(MAKE ) dm_beat.o
1140+ @$(MAKE ) dm_posix_pipe.o
1141+ @$(MAKE ) dm_freebsd.o
1142+ @$(MAKE ) dm_linux.o
1143+ @$(MAKE ) dm_posix.o
1144+ @$(MAKE ) dm_posix_fifo.o
11471145 @$(MAKE ) dm_posix_tty.o
11481146 @$(MAKE ) dm_posix_thread.o
11491147 @$(MAKE ) dm_posix_signal.o
@@ -1152,6 +1150,9 @@ $(TARGET): $(SRC)
11521150 @$(MAKE ) dm_posix_mqueue.o
11531151 @$(MAKE ) dm_logger.o
11541152 @$(MAKE ) dm_posix_mqueue_util.o
1153+ @$(MAKE ) dm_plot.o
1154+ @$(MAKE ) dm_report.o
1155+ @$(MAKE ) dm_regex.o
11551156 @$(MAKE ) dm_test.o
11561157 @$(MAKE ) dm_nml.o
11571158 @$(MAKE ) dm_hdf5.o
@@ -1309,6 +1310,9 @@ dmtestid: test/dmtestid.f90 $(TARGET)
13091310dmtestipc : test/dmtestipc.f90 $(TARGET )
13101311 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestipc test/dmtestipc.f90 $(TARGET ) $(LIBNNG ) $(LDLIBS )
13111312
1313+ dmtestipcmutex : test/dmtestipcmutex.f90 $(TARGET )
1314+ $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestipcmutex test/dmtestipcmutex.f90 $(TARGET ) $(LIBNNG ) $(LDLIBS )
1315+
13121316dmtestipcthread : test/dmtestipcthread.f90 $(TARGET )
13131317 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestipcthread test/dmtestipcthread.f90 $(TARGET ) $(LIBNNG ) $(LDLIBS )
13141318
@@ -1354,15 +1358,18 @@ dmtestobserv: test/dmtestobserv.f90 $(TARGET)
13541358dmtestpath : test/dmtestpath.f90 $(TARGET )
13551359 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestpath test/dmtestpath.f90 $(TARGET ) $(LDLIBS )
13561360
1357- dmtestpipe : test/dmtestpipe.f90 $(TARGET )
1358- $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestpipe test/dmtestpipe.f90 $(TARGET ) $(LDLIBS )
1359-
13601361dmtestplot : test/dmtestplot.f90 $(TARGET )
13611362 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestplot test/dmtestplot.f90 $(TARGET ) $(LDLIBS )
13621363
1364+ dmtestposix : test/dmtestposix.f90 $(TARGET )
1365+ $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestposix test/dmtestposix.f90 $(TARGET ) $(LDLIBS )
1366+
13631367dmtestposixmqueue : test/dmtestposixmqueue.f90 $(TARGET )
13641368 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestposixmqueue test/dmtestposixmqueue.f90 $(TARGET ) $(LIBRT ) $(LDLIBS )
13651369
1370+ dmtestposixpipe : test/dmtestposixpipe.f90 $(TARGET )
1371+ $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestposixpipe test/dmtestposixpipe.f90 $(TARGET ) $(LDLIBS )
1372+
13661373dmtestposixthread : test/dmtestposixthread.f90 $(TARGET )
13671374 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestposixthread test/dmtestposixthread.f90 $(TARGET ) $(LIBPTHREAD ) $(LDLIBS )
13681375
@@ -1387,9 +1394,6 @@ dmteststatistics: test/dmteststatistics.f90 $(TARGET)
13871394dmteststring : test/dmteststring.f90 $(TARGET )
13881395 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmteststring test/dmteststring.f90 $(TARGET ) $(LDLIBS )
13891396
1390- dmtestsystem : test/dmtestsystem.f90 $(TARGET )
1391- $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtestsystem test/dmtestsystem.f90 $(TARGET ) $(LDLIBS )
1392-
13931397dmtesttime : test/dmtesttime.f90 $(TARGET )
13941398 $(FC ) $(FFLAGS ) $(MODFLAGS ) $(LDFLAGS ) -o dmtesttime test/dmtesttime.f90 $(TARGET ) $(LDLIBS )
13951399
0 commit comments