-
Notifications
You must be signed in to change notification settings - Fork 10
/
GNUmakefile
1253 lines (1070 loc) · 34.7 KB
/
GNUmakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
############################################################################
# vim: filetype=sh:tabstop=4:tw=76
#
# ************ Make Variables ************
#
# - "VERBOSE" -or- "V" (example: 'gmake test VERBOSE=1')
# Set to '1' to enable verbose build output
#
# ********** DUMA Configuration **********
#
# - Add "-DDUMA_NO_GLOBAL_MALLOC_FREE" (no quotes)
# For not defining malloc / free in global namespace
#
# - Add "-DDUMA_EXPLICIT_INIT" (no quotes)
# To do all the "risky" stuff: getenv(), sem_init(), write() ...
# explicitly from main(). You must call duma_init() explicitly
# from main() as well. This option avoids leak report messages
# from allocations made before calling duma_init(). This helps
# avoid leak warnings caused by the standard system environment.
#
# - Add "-DDUMA_NO_THREAD_SAFETY" (no quotes)
# For not supporting multi-threading
#
# - Add "-DDUMA_SO_NO_CPP_SUPPORT" -or-
# "-DDUMA_LIB_NO_CPP_SUPPORT" (no quotes)
# For not directing new / delete to malloc / free
#
# - Add "-DDUMA_SO_NO_LEAKDETECTION" -or-
# "-DDUMA_LIB_NO_LEAKDETECTION" (no quotes)
# If you want to disable support for leak detection
# (set by default when building the shared library)
#
# - Add "-DDUMA_SO_PREFER_ATEXIT" -or-
# "-DDUMA_LIB_PREFER_ATEXIT" (no quotes)
# If you prefer atexit() over the GNU compiler's function
# attribute "destructor"
#
# - Add "-DDUMA_SO_PREFER_GETENV" -or-
# "-DDUMA_LIB_PREFER_GETENV" (no quotes)
# If you prefer standard C library getenv() over the global
# 'char **environ'
#
# - Add "-DDUMA_OLD_NEW_MACRO" (no quotes)
# If you want to use DUMA's old-style NEW_ELEM and NEW_ARRAY macros
# When not defining this option, a standards conforming "new" syntax
# can be used. Unfortunately, you have to use DEL_ELEM / DEL_ARRAY
# further to utilize filename and line number of deallocation calls
#
# - Add "-DDUMA_SO_NO_HANG_MSG" -or-
# "-DDUMA_LIB_NO_HANG_MSG" (no quotes)
# Set this if you want to suppress the output from around atexit()
#
# - Add "-DDUMA_NO_STRERROR" (no quotes)
# Set this if you want to suppress calling strerror(), which avoids
# recursion on specific platforms
#
# - Preprocessor flags for building the shared library (DUMA_SO_LIBRARY):
# * DUMA_SO_NO_CPP_SUPPORT
# * DUMA_SO_NO_LEAKDETECTION
# * DUMA_SO_PREFER_ATEXIT
# * DUMA_SO_PREFER_GETENV
# * DUMA_SO_NO_HANG_MSG
#
# - Preprocessor flags for building the static library:
# * DUMA_LIB_NO_CPP_SUPPORT
# * DUMA_LIB_NO_LEAKDETECTION
# * DUMA_LIB_PREFER_ATEXIT
# * DUMA_LIB_PREFER_GETENV
# * DUMA_LIB_NO_HANG_MSG
# * DUMA_NO_GLOBAL_MALLOC_FREE
# * DUMA_EXPLICIT_INIT
# * DUMA_NO_THREAD_SAFETY
# * DUMA_OLD_NEW_MACRO
# * DUMA_OLD_DEL_MACRO
# * DUMA_NO_STRERROR
#
# ********** Additional DUMA Configuration **********
#
# - FreeBSD 5.4:
# DUMA_OPTIONS += -DPAGE_PROTECTION_VIOLATED_SIGNAL=SIGBUS
#
# - FreeBSD 5.4 (with DUMA_EXPLICIT_INIT unset):
# DUMA_OPTIONS += -DDUMA_NO_LEAKDETECTION
#
# - Cygwin (also define 'WIN32'):
# DUMA_OPTIONS += -DDUMA_EXPLICIT_INIT
# also define 'WIN32'
#
# ********** Option Examples **********
#
# * DUMA_OPTIONS += -DDUMA_LIB_NO_LEAKDETECTION
# * DUMA_OPTIONS += -DDUMA_NO_THREAD_SAFETY
# * DUMA_OPTIONS += -DDUMA_NO_CPP_SUPPORT
#
# ************** See the README.md for more information **************
DUMA_OPTIONS=
DUMA_OPTIONS += -DDUMA_SO_NO_LEAKDETECTION
############################################################################
# Configuration: Default Settings
PIC=-fPIC -DPIC
DUMA_SO_OPTIONS=$(PIC) -DDUMA_SO_LIBRARY
DUMA_SO_VERSION=.0.0.0
CURPATH=./
INSTALL=install
MKDIR=mkdir -p
RM=rm
RMFORCE=rm -f
RMDIR=rmdir
ROFF=nroff
ECHO=printf '%s\n'
ECHOLF=printf '%s\n' ""
ENV=env
LN=ln -s
CC=cc
CXX=c++
LD=ld
AR=ar
RANLIB=ranlib
INSTALL=install
DOS2UNIX=dos2unix
UNAME=uname
TR=tr
GREP=grep
TSTVAL=3072
DEVNULL=/dev/null
############################################################################
# Define: V / VERBOSE
ifdef VERBOSE
ifndef V
V=$(VERBOSE)
endif
endif
ifdef V
ifndef VERBOSE
VERBOSE=$(V)
endif
endif
############################################################################
# Define: VERBAN
ifneq ($(VERBOSE), 1)
VERBAN=DUMA_DISABLE_BANNER=1
else
VERBAN=
endif
############################################################################
# Define: VECHO
ifneq ($(VERBOSE), 1)
VECHO=$(ECHO)
else
VECHO=true
endif
############################################################################
# Define: Automatic OS detection
ifndef $(OS)
OS=$(shell $(UNAME) -s 2> $(DEVNULL) | \
$(TR) '[:upper:]' '[:lower:]' 2> $(DEVNULL))
endif
############################################################################
# Define: Automatic GNU Makefile path detection
mkfile_name := $(abspath $(lastword $(MAKEFILE_LIST)))
mkfile_path := $(dir $(mkfile_name))
############################################################################
# Define: DUMA dynamic dependencies
DUMA_DYN_DEPS=$(DUMASO) \
tstheap_so$(EXEPOSTFIX) \
dumatestpp_so$(EXEPOSTFIX) \
thread-test_so$(EXEPOSTFIX)
############################################################################
# Configuration: Windows (MSYS) - Command Prompt
ifeq ($(OS), windows_nt)
ifeq ($(OSTYPE), msys)
$(info *** Using configuration: OS=windows_nt, OSTYPE=msys)
# DUMA_EXPLICIT_INIT avoid leak reports from __w32_sharedptr_initialize()
BSWITCH=101
DUMA_OPTIONS += -DDUMA_EXPLICIT_INIT
MKDIR=md
RM=del
RMFORCE=del /F 2>nul
RMDIR=rd /q
ECHO=echo
ECHOLF=echo .
CURPATH=
DUMA_DYN_DEPS=
DUMASO=
CFLAGS=-g -O0
CPPFLAGS=-g -O0
LIBS=
EXEPOSTFIX=.exe
endif
############################################################################
# Configuration: Windows (MSYS) - Bourne Shell
ifeq ($(OSTYPE), msys-sh)
$(info *** Using configuration: OS=windows_nt, OSTYPE=msys-sh)
# DUMA_EXPLICIT_INIT avoid leak reports from __w32_sharedptr_initialize()
BSWITCH=102
DUMA_OPTIONS += -DDUMA_EXPLICIT_INIT
CC=mingw32-gcc
CXX=mingw32-g++ -std=c++98
DUMA_DYN_DEPS=
DUMASO=
CFLAGS=-g -O0
CPPFLAGS=-g -O0
LIBS=
EXEPOSTFIX=.exe
endif
############################################################################
# Configuration: Windows (Cygwin)
ifeq ($(OSTYPE), cygwin)
$(info *** Using configuration: OS=windows_nt, OSTYPE=cygwin)
BSWITCH=103
DUMA_OPTIONS += -DDUMA_EXPLICIT_INIT
DUMA_DYN_DEPS=
DUMASO=
CFLAGS=-g -O0 -DWIN32
CPPFLAGS=-g -O0 -DWIN32
LIBS=
EXEPOSTFIX=.exe
endif
############################################################################
# Configuration: Windows NT
ifndef BSWITCH
$(info *** Using configuration: OS=windows_nt)
BSWITCH=100
DUMA_OPTIONS += -DDUMA_EXPLICIT_INIT
DUMA_DYN_DEPS=
DUMASO=
CFLAGS=-g -O0 -DWIN32
CPPFLAGS=-g -O0 -DWIN32
LIBS=
EXEPOSTFIX=.exe
endif
endif
############################################################################
# Configuration: Darwin (macOS X)
ifeq ($(OS), darwin)
$(info *** Using configuration: OS=darwin)
BSWITCH=210
DUMA_OPTIONS += -DPAGE_PROTECTION_VIOLATED_SIGNAL=SIGBUS
DUMA_OPTIONS += -DDUMA_SO_PREFER_GETENV
# DUMA_OPTIONS += -DDUMA_LIB_NO_LEAKDETECTION
# DUMA_DYN_DEPS=
DUMASO=libduma.dylib
DUMASO_LINK1=libduma.dylib
CFLAGS=-g -O0
CPPFLAGS=-g -O0
LIBS=-lpthread
EXEPOSTFIX=
prefix?=/opt/duma
endif
############################################################################
# Configuration: FreeBSD
ifeq ($(OS), freebsd)
$(info *** Using configuration: OS=freebsd)
BSWITCH=310
# DUMA_OPTIONS += -DDUMA_NO_THREAD_SAFETY
DUMA_OPTIONS += -DDUMA_EXPLICIT_INIT
DUMA_DYN_DEPS=
DUMASO=
DUMASO_LINK1=
CFLAGS=-g -O0
CPPFLAGS=-g -O0
LIBS=-lpthread
EXEPOSTFIX=
endif
############################################################################
# Configuration: NetBSD
ifeq ($(OS), netbsd)
$(info *** Using configuration: OS=netbsd)
BSWITCH=320
DUMASO=libduma.so$(DUMA_SO_VERSION)
DUMASO_LINK1=libduma.so.0
DUMASO_LINK2=libduma.so
CFLAGS=-g -O0
CPPFLAGS=-g -O0
LIBS=-lpthread
EXEPOSTFIX=
endif
############################################################################
# Configuration: Solaris
ifeq ($(OS), solaris)
$(info *** Using configuration: OS=solaris)
BSWITCH=410
DUMA_OPTIONS += -DDUMA_NO_STRERROR
DUMA_DYN_DEPS=
DUMASO=libduma.so$(DUMA_SO_VERSION)
DUMASO_LINK1=libduma.so.0
DUMASO_LINK2=libduma.so
CFLAGS=-g -O0
CPPFLAGS=-g -O0
LDFLAGS += -lgcc_s
LDOPTIONS += -lgcc_s
LIBS=-Wl,-R/opt/sfw/lib -lpthread
EXEPOSTFIX=
endif
############################################################################
# Configuration: Linux (detect compiler)
ifeq ($(OS), linux)
ifeq ($(shell $(CXX) -v 2>&1 | $(GREP) -c "clang version" 2> $(DEVNULL)), 1)
COMPILERX := clang++
else
COMPILERX := g++ -std=c++98
endif
export COMPILERX
ifeq ($(shell $(CC) -v 2>&1 | $(GREP) -c "clang version" 2> $(DEVNULL)), 1)
COMPILER := clang
else
COMPILER := gcc
endif
export COMPILER
CC=${COMPILER}
CXX=${COMPILERX}
$(info *** Using CC=${COMPILER})
$(info *** Using CXX=${COMPILERX})
ifeq ($(OSTYPE), pie)
############################################################################
# Configuration: Linux (PIE)
$(info *** Using configuration: OS=linux, OSTYPE=pie)
CC=${COMPILER} -fpie -fPIE
CXX=${COMPILERX} -fpie -fPIE
BSWITCH=510
else
############################################################################
# Configuration: Linux (common, glibc)
$(info *** Using configuration: OS=linux)
CC=${COMPILER}
CXX=${COMPILERX}
BSWITCH=610
endif
DUMA_OPTIONS += -DDUMA_NO_STRERROR
DUMASO=libduma.so$(DUMA_SO_VERSION)
DUMASO_LINK1=libduma.so.0
DUMASO_LINK2=libduma.so
CFLAGS=-g -O0 -Wall -Wextra
CFLAGS+=-U_FORTIFY_SOURCE
CPPFLAGS=-g -O0 -Wall -Wextra
CPPFLAGS+=-U_FORTIFY_SOURCE
LIBS=-lpthread
EXEPOSTFIX=
endif
############################################################################
# Configuration: Generic UNIX
ifndef BSWITCH
BSWITCH=810
$(warning ****** Using generic UNIX fallback configuration ******)
ifndef OS
$(warning ****** OS unset ******)
else
$(warning ****** Unknown OS ******)
endif
DUMASO=libduma.so$(DUMA_SO_VERSION)
DUMASO_LINK1=libduma.so.0
DUMASO_LINK2=libduma.so
CFLAGS=-g -O0
CPPFLAGS=-g -O0
LIBS=-lpthread
EXEPOSTFIX=
endif
############################################################################
# Define: HOST_CFLAGS
ifndef HOST_CFLAGS
HOST_CFLAGS=$(CFLAGS)
endif
############################################################################
# Define: CC_FOR_BUILD
ifndef CC_FOR_BUILD
CC_FOR_BUILD=$(CC)
endif
############################################################################
# Define: Default prefix
ifndef prefix
prefix=/usr
$(info *** Using default prefix [$(prefix)])
endif
############################################################################
# Define: Default documentation installation prefix
MAN_INSTALL_DIR=$(prefix)/share/man/man3
DOC_INSTALL_DIR=$(prefix)/share/doc/duma
############################################################################
# Define: Default srcdir
ifndef srcdir
ifdef mkfile_path
srcdir=$(mkfile_path)
$(info *** Using default srcdir [$(srcdir)])
endif
endif
ifndef srcdir
srcdir=./
$(info *** Using fallback srcdir [$(srcdir)])
endif
############################################################################
# Define: VPATHs (GNU Make search paths)
vpath %.3 $(srcdir) $(CURDIR)
vpath %.cat $(srcdir) $(CURDIR)
vpath %.$(exec_prefix) $(srcdir) $(srcdir)src $(srcdir)tests $(CURDIR)
vpath %.$(EXEPOSTFIX) $(srcdir) $(srcdir)src $(srcdir)tests $(CURDIR)
vpath %.h $(srcdir) $(srcdir)src $(srcdir)tests $(CURDIR)
vpath %.cpp $(srcdir) $(srcdir)src $(srcdir)tests $(CURDIR)
vpath %.c $(srcdir) $(srcdir)src $(srcdir)tests $(CURDIR)
############################################################################
# Define: Default exec_prefix
ifndef exec_prefix
exec_prefix=$(prefix)
$(info *** Using default exec_prefix [$(exec_prefix)])
endif
############################################################################
# Define: Default bindir
ifndef bindir
bindir=$(exec_prefix)/bin
endif
############################################################################
# Define: Default datadir
ifndef datadir
datadir=$(prefix)/share
endif
############################################################################
# Define: Default sysconfdir
ifndef sysconfdir
sysconfdir=$(prefix)/etc
endif
############################################################################
# Define: Default libdir
ifndef libdir
libdir=$(exec_prefix)/lib
endif
############################################################################
# Define: Default includedir
ifndef includedir
includedir=$(prefix)/include
endif
############################################################################
# Define: Package source files
PACKAGE_SOURCE=$(srcdir)README.md \
$(srcdir)CHANGELOG.md \
$(srcdir)LICENSE \
$(srcdir)COPYING-GPL \
$(srcdir)COPYING-LGPL \
$(srcdir)duma.3 \
$(srcdir)GNUmakefile \
$(srcdir)gdbinit.rc \
$(srcdir)duma.h \
$(srcdir)dumapp.h \
$(srcdir)duma_sem.h \
$(srcdir)paging.h \
$(srcdir)print.h \
$(srcdir)duma_hlp.h \
$(srcdir)noduma.h \
$(srcdir)src/duma.c \
$(srcdir)src/dumapp.cpp \
$(srcdir)src/sem_inc.c \
$(srcdir)src/print.c \
$(srcdir)tests/dumatest.c \
$(srcdir)tests/tstheap.c \
$(srcdir)tests/thread-test.c \
$(srcdir)tests/testmt.c \
$(srcdir)tests/dumatestpp.cpp \
$(srcdir)tests/testoperators.cpp \
$(srcdir)createconf.c \
$(srcdir)make_git_source_version.sh
############################################################################
# Define: OBJECTS
OBJECTS=dumapp.o \
duma.o \
sem_inc.o \
print.o
############################################################################
# Define: SO_OBJECTS
SO_OBJECTS=dumapp_so.o \
duma_so.o \
sem_inc_so.o \
print_so.o
############################################################################
# Target: "all" (default)
.PHONY: all
all: verinfo.h \
libduma.a \
$(DUMA_DYN_DEPS)
@ $(ECHO) "*** Build complete"
############################################################################
# Target: "check" / "test"
.PHONY: check test
check test: libduma.a \
tstheap$(EXEPOSTFIX) \
dumatest$(EXEPOSTFIX) \
thread-test$(EXEPOSTFIX) \
testmt$(EXEPOSTFIX) \
dumatestpp$(EXEPOSTFIX) \
testoperators$(EXEPOSTFIX) \
testmemlimit$(EXEPOSTFIX) \
$(DUMA_DYN_DEPS)
@ $(ECHOLF)
@ $(ECHO) "*** Testing DUMA (static library)"
@ $(VECHO) " *** Test: dumatest"
@ $(VERBAN) "$(CURPATH)dumatest$(EXEPOSTFIX)"
@ $(VECHO) " *** Test: dumatestpp"
@ $(VERBAN) "$(CURPATH)dumatestpp$(EXEPOSTFIX)"
@ $(VECHO) " *** Test: tstheap $(TSTVAL)"
@ $(VERBAN) "$(CURPATH)tstheap$(EXEPOSTFIX)" "$(TSTVAL)"
@ $(VECHO) " *** Test: thread-test"
@ $(VERBAN) "$(CURPATH)thread-test$(EXEPOSTFIX)" > $(DEVNULL)
# @ $(VECHO) " *** Test: testmt"
# @ $(VERBAN) "$(CURPATH)testmt$(EXEPOSTFIX)"
@ $(VECHO) " *** Test: testoperators"
@ $(VERBAN) "$(CURPATH)testoperators$(EXEPOSTFIX)"
@ $(VECHO) " *** Test: testmemlimit"
@ $(VERBAN) "$(CURPATH)testmemlimit$(EXEPOSTFIX)"
@ $(ECHO) "*** DUMA static confidence test PASSED."
ifdef DUMASO
@ $(ECHOLF)
@ $(ECHO) "*** Testing DUMA (dynamic library)"
@ $(VECHO) " *** Test: dumatestpp_so"
ifeq ($(OS), solaris)
@ LD_PRELOAD="./$(DUMASO)" \
DYLD_INSERT_LIBRARIES="./$(DUMASO)" \
DYLD_FORCE_FLAT_NAMESPACE=1 \
$(VERBAN) exec "$(CURPATH)dumatestpp_so$(EXEPOSTFIX)" \
"$(TSTVAL)"
else
@ (export LD_PRELOAD="./$(DUMASO)"; \
export DYLD_INSERT_LIBRARIES="./$(DUMASO)"; \
export DYLD_FORCE_FLAT_NAMESPACE=1 ; \
$(VERBAN) exec "$(CURPATH)dumatestpp_so$(EXEPOSTFIX)" \
"$(TSTVAL)")
endif
@ $(VECHO) " *** Test: tstheap_so $(TSTVAL)"
ifeq ($(OS), solaris)
@ LD_PRELOAD="./$(DUMASO)" \
DYLD_INSERT_LIBRARIES="./$(DUMASO)" \
DYLD_FORCE_FLAT_NAMESPACE=1 \
$(VERBAN) exec "$(CURPATH)tstheap_so$(EXEPOSTFIX)" \
"$(TSTVAL)"
else
@ (export LD_PRELOAD="./$(DUMASO)"; \
export DYLD_INSERT_LIBRARIES="./$(DUMASO)"; \
export DYLD_FORCE_FLAT_NAMESPACE=1 ; \
$(VERBAN) exec "$(CURPATH)tstheap_so$(EXEPOSTFIX)" \
"$(TSTVAL)")
endif
@ $(VECHO) " *** Test: thread-test_so"
ifeq ($(OS), solaris)
@ LD_PRELOAD="./$(DUMASO)" \
DYLD_INSERT_LIBRARIES="./$(DUMASO)" \
DYLD_FORCE_FLAT_NAMESPACE=1 \
$(VERBAN) exec "$(CURPATH)thread-test_so$(EXEPOSTFIX)" \
> $(DEVNULL)
else
@ (export LD_PRELOAD="./$(DUMASO)"; \
export DYLD_INSERT_LIBRARIES="./$(DUMASO)"; \
export DYLD_FORCE_FLAT_NAMESPACE=1 ; \
$(VERBAN) exec "$(CURPATH)thread-test_so$(EXEPOSTFIX)") \
> $(DEVNULL)
endif
@ $(ECHO) "*** DUMA confidence test PASSED."
@ $(ECHOLF)
endif
############################################################################
# Target: "installcheck" / "installtest"
.PHONY: installcheck installtest
installcheck installtest: test
ifdef DUMASO
@ $(ECHOLF)
@ $(ECHO) "*** Testing installed DUMA (dynamic library):"
@ $(ECHOLF)
@ $(VECHO) " *** Test: tstheap_so $(TSTVAL)"
@ $(VERBAN) "$(bindir)/duma" "$(CURPATH)tstheap_so" "$(TSTVAL)"
@ $(ECHO) "*** DUMA installcheck test PASSED."
@ $(ECHOLF)
endif
############################################################################
# Target: "printvars" / "printenv" (display variables of GNUmakefile)
.PHONY: printvars printenv
printvars printenv:
@echo "OS [$(OS)]"
@echo "OSTYPE [$(OSTYPE)]"
@echo "bswitch [$(BSWITCH)]"
@echo "srcdir [$(srcdir)]"
@echo "prefix [$(prefix)]"
@echo "exec_prefix [$(exec_prefix)]"
@echo "bindir [$(bindir)]"
@echo "datadir [$(datadir)]"
@echo "sysconfdir [$(sysconfdir)]"
@echo "libdir [$(libdir)]"
@echo "includedir [$(includedir)]"
@echo "oldincludedir [$(oldincludedir)]"
@echo "CURDIR [$(CURDIR)]"
@echo "MAN_INSTALL_DIR [$(MAN_INSTALL_DIR)]"
@echo "DOC_INSTALL_DIR [$(DOC_INSTALL_DIR)]"
@echo "VERBOSE [$(VERBOSE)]"
@echo "V [$(V)]"
@echo "VERBAN [$(VERBAN)]"
@echo "MKDIR [$(MKDIR)]"
@echo "MAKE [$(MAKE)]"
@echo "CC [$(CC)]"
@echo "CFLAGS [$(CFLAGS)]"
@echo "CXX [$(CXX)]"
@echo "CPPFLAGS [$(CPPFLAGS)]"
@echo "LD [$(LD)]"
@echo "AR [$(AR)]"
@echo "LIBS [$(LIBS)]"
@echo "RANLIB [$(RANLIB)]"
@echo "INSTALL [$(INSTALL)]"
@echo "RM [$(RM)]"
@echo "RMFORCE [$(RMFORCE)]"
@echo "RMDIR [$(RMDIR)]"
@echo "VECHO [$(VECHO)]"
@echo "ECHO [$(ECHO)]"
@echo "ECHOLF [$(ECHOLF)]"
@echo "PIC [$(PIC)]"
@echo "EXEPOSTFIX [$(EXEPOSTFIX)]"
@echo "CURPATH [$(CURPATH)]"
@echo "DUMA_OPTIONS [$(DUMA_OPTIONS)]"
@echo "DUMA_SO_OPTIONS [$(DUMA_SO_OPTIONS)]"
@echo "OBJECTS [$(OBJECTS)]"
@echo "SO_OBJECTS [$(SO_OBJECTS)]"
@echo "DUMA_SO_VERSION [$(DUMA_SO_VERSION)]"
@echo "DUMASO [$(DUMASO)]"
@echo "DUMASO_LINK1 [$(DUMASO_LINK1)]"
@echo "DUMASO_LINK2 [$(DUMASO_LINK2)]"
@echo "DUMA_DYN_DEPS [$(DUMA_DYN_DEPS)]"
@echo "PACKAGE_SOURCE [$(PACKAGE_SOURCE)]"
############################################################################
# Target "printuk" (display files unknown to git)
.PHONY: printuk
printuk:
@ $(ECHO) "*** Begin printuk (git untracked files):"
@ git status -s --untracked-files="all" 2> $(DEVNULL) | \
$(GREP) '^? ' || true
@ $(ECHO) "*** End printuk"
############################################################################
# Target: "printmod" (display files known to git but not up-to-date)
.PHONY: printmod
printmod:
@ $(ECHO) "*** Begin printmod (git tracked modified files)"
@ git status -s 2> $(DEVNULL) | \
$(GREP) '^\ \?M ' || true
@ $(ECHO) "*** End printmod"
############################################################################
# Target: "install" (installs DUMA, respecting DESTDIR variable)
.PHONY: install
install: libduma.a \
duma.3 \
duma_config.h \
$(DUMASO)
- $(MKDIR) "$(DESTDIR)$(DOC_INSTALL_DIR)"
$(INSTALL) -m 644 \
"$(srcdir)README.md" \
"$(DESTDIR)$(DOC_INSTALL_DIR)"
- $(MKDIR) "$(DESTDIR)$(includedir)"
$(INSTALL) -m 644 \
"$(srcdir)noduma.h" \
"$(srcdir)duma.h" \
"$(srcdir)dumapp.h" \
"$(srcdir)duma_sem.h" \
"$(CURDIR)/duma_config.h" \
"$(DESTDIR)$(includedir)"
ifdef DUMASO
- $(MKDIR) "$(DESTDIR)$(bindir)"
$(INSTALL) -m 755 \
"$(srcdir)duma.sh" \
"$(DESTDIR)$(bindir)/duma"
endif
- $(MKDIR) "$(DESTDIR)$(libdir)"
$(INSTALL) -m 644 \
"$(CURDIR)/libduma.a" \
"$(DESTDIR)$(libdir)"
ifdef DUMASO
$(INSTALL) -m 755 \
"$(CURDIR)/$(DUMASO)" \
"$(DESTDIR)$(libdir)"
endif
ifdef DUMASO_LINK1
- $(RMFORCE) "$(DESTDIR)$(libdir)/$(DUMASO_LINK1)"
$(LN) \
"$(DUMASO)" \
"$(DESTDIR)$(libdir)/$(DUMASO_LINK1)"
endif
ifdef DUMASO_LINK2
- $(RMFORCE) "$(DESTDIR)$(libdir)/$(DUMASO_LINK2)"
$(LN) \
"$(DUMASO)" \
"$(DESTDIR)$(libdir)/$(DUMASO_LINK2)"
endif
- $(MKDIR) "$(DESTDIR)$(MAN_INSTALL_DIR)"
$(INSTALL) -m 644 \
"$(srcdir)duma.3" \
"$(DESTDIR)$(MAN_INSTALL_DIR)/duma.3"
############################################################################
# Target: "uninstall" (uninstalls DUMA, respects DESTDIR variable)
.PHONY: uninstall
uninstall:
- $(RMFORCE) "$(DESTDIR)$(DOC_INSTALL_DIR)/README.md"
- $(RMFORCE) "$(DESTDIR)$(includedir)/noduma.h"
- $(RMFORCE) "$(DESTDIR)$(includedir)/duma.h"
- $(RMFORCE) "$(DESTDIR)$(includedir)/dumapp.h"
- $(RMFORCE) "$(DESTDIR)$(includedir)/duma_sem.h"
- $(RMFORCE) "$(DESTDIR)$(includedir)/duma_config.h"
- $(RMFORCE) "$(DESTDIR)$(bindir)/duma"
- $(RMFORCE) "$(DESTDIR)$(libdir)/libduma.a"
ifdef DUMASO
- $(RMFORCE) "$(DESTDIR)$(libdir)/$(DUMASO)"
endif
ifdef DUMASO_LINK1
- $(RMFORCE) "$(DESTDIR)$(libdir)/$(DUMASO_LINK1)"
endif
ifdef DUMASO_LINK2
- $(RMFORCE) "$(DESTDIR)$(libdir)/$(DUMASO_LINK2)"
endif
- $(RMFORCE) "$(DESTDIR)$(MAN_INSTALL_DIR)/duma.3"
############################################################################
# Target: "clean" (deletes make output; saves configuration artifacts)
.PHONY: clean
clean:
- $(RMFORCE) core a.out $(OBJECTS) \
$(SO_OBJECTS) \
tstheap.o dumatest.o thread-test.o testmt.o dumatestpp.o \
tstheap_so.o dumatestpp_so.o testoperators.o testmemlimit.o \
testmemlimit$(EXEPOSTFIX) thread-test_so$(EXEPOSTFIX) \
tstheap$(EXEPOSTFIX) tstheap_so$(EXEPOSTFIX) \
dumatest$(EXEPOSTFIX) dumatestpp$(EXEPOSTFIX) \
dumatestpp_so$(EXEPOSTFIX) testoperators$(EXEPOSTFIX) \
thread-test$(EXEPOSTFIX) testmt$(EXEPOSTFIX) \
libduma.a $(DUMASO) thread-test_so.o libduma.cat
############################################################################
# Target: "distclean" / "realclean" / "clobber" (deletes all make output)
.PHONY: distclean realclean clobber clean
distclean realclean clobber: clean
- $(RMFORCE) duma_config.h verinfo.h createconf.o \
createconf$(EXEPOSTFIX) CMakeCache.txt CMakeFiles/cmake.*cache \
"$(srcdir)CMakeFiles/"cmake.*cache
@ $(RMDIR) "$(srcdir)CMakeFiles" > $(DEVNULL) 2>&1 || true
@ $(RMDIR) "$(CURDIR)/CMakeFiles" > $(DEVNULL) 2>&1 || true
############################################################################
# Target: "libduma.cat"
libduma.cat: roff
############################################################################
# Target: "roff" (renders catman documentation from roff source)
.PHONY: roff
roff: duma.3
$(ROFF) -man < "$(srcdir)duma.3" > "$(CURDIR)/libduma.cat"
############################################################################
# Target: "libduma.a"
libduma.a: duma_config.h \
verinfo.h \
$(OBJECTS)
- $(RMFORCE) libduma.a
$(AR) crv \
libduma.a \
$(OBJECTS)
$(RANLIB) libduma.a
############################################################################
# Target: "duma.sh"
# Placeholder to process duma.sh.in to duma.sh
############################################################################
# Target: "verinfo.h"
verinfo.h:
"$(srcdir)make_git_source_version.sh" || \
$(ENV) sh "$(srcdir)make_git_source_version.sh" || \
$(SHELL) "$(srcdir)make_git_source_version.sh" || \
touch "$(CURPATH)verinfo.h"
############################################################################
# Target: "duma_config.h"
duma_config.h:
$(MAKE) -f "$(mkfile_name)" reconfig
############################################################################
# Target: "reconfig"
.PHONY: reconfig
reconfig: verinfo.h \
createconf$(EXEPOSTFIX) \
createconf.o \
createconf.c
- "$(CURPATH)createconf$(EXEPOSTFIX)"
############################################################################
# Target: "dos2unix" (convert source line endings)
.PHONY: dos2unix
dos2unix:
$(DOS2UNIX) $(PACKAGE_SOURCE)
############################################################################
# Target: "createconf"
createconf$(EXEPOSTFIX): createconf.o
- $(RMFORCE) createconf$(EXEPOSTFIX)
$(CC_FOR_BUILD) $(HOST_CFLAGS) $(DUMA_OPTIONS) \
createconf.o \
-o createconf$(EXEPOSTFIX)
############################################################################
# Target: "tstheap"
tstheap$(EXEPOSTFIX): libduma.a \
tstheap.o
- $(RMFORCE) tstheap$(EXEPOSTFIX)
$(CC) $(CFLAGS) -I"./" \
tstheap.o libduma.a \
-o tstheap$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "dumatest"
dumatest$(EXEPOSTFIX): libduma.a \
dumatest.o
- $(RMFORCE) dumatest$(EXEPOSTFIX)
$(CC) $(CFLAGS) -I"./" \
dumatest.o libduma.a \
-o dumatest$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "dumatestpp"
dumatestpp$(EXEPOSTFIX): libduma.a \
dumatestpp.o \
duma_sem.h \
dumapp.h
- $(RMFORCE) dumatestpp$(EXEPOSTFIX)
$(CXX) -I"./" $(CPPFLAGS) \
dumatestpp.o libduma.a \
-o dumatestpp$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "thread-test"
thread-test$(EXEPOSTFIX): libduma.a \
thread-test.o
- $(RMFORCE) thread-test$(EXEPOSTFIX)
$(CC) -I"./" $(CFLAGS) \
thread-test.o libduma.a \
-o thread-test$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "thread-test_so"
thread-test_so$(EXEPOSTFIX): thread-test_so.o
- $(RMFORCE) thread-test_so$(EXEPOSTFIX)
$(CC) -I"./" $(CFLAGS) \
thread-test_so.o \
-o thread-test_so$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "testmt"
testmt$(EXEPOSTFIX): libduma.a \
testmt.o
- $(RMFORCE) testmt$(EXEPOSTFIX)
$(CC) -I"./" $(CFLAGS) \
testmt.o libduma.a \
-o testmt$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "testoperators"
testoperators$(EXEPOSTFIX): libduma.a \
testoperators.o \
duma_sem.h \
dumapp.h
- $(RMFORCE) testoperators$(EXEPOSTFIX)
$(CXX) -I"./" $(CPPFLAGS) \
testoperators.o libduma.a \
-o testoperators$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "testmemlimit"
testmemlimit$(EXEPOSTFIX): libduma.a \
testmemlimit.o
- $(RMFORCE) testmemlimit$(EXEPOSTFIX)
$(CC) -I"./" $(CFLAGS) \
testmemlimit.o libduma.a \
-o testmemlimit$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "tstheap_so"
tstheap_so$(EXEPOSTFIX): tstheap_so.o
- $(RMFORCE) tstheap_so$(EXEPOSTFIX)
$(CC) $(CFLAGS) -I"./" \
tstheap_so.o \
-o tstheap_so$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "dumatestpp_so"
dumatestpp_so$(EXEPOSTFIX): dumatestpp_so.o
- $(RMFORCE) dumatestpp_so$(EXEPOSTFIX)
$(CXX) -I"./" $(CPPFLAGS) \
dumatestpp_so.o \
-o dumatestpp_so$(EXEPOSTFIX) $(LIBS)
############################################################################
# Target: "testmemlimit_so"
testmemlimit_so$(EXEPOSTFIX): testmemlimit_so.o
- $(RMFORCE) testmemlimit_so$(EXEPOSTFIX)
$(CC) -I"./" $(CFLAGS) \
testmemlimit_so.o \