diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-10-16 12:15:59 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-10-16 13:45:09 -0400 |
| commit | 9371874907c042b587b5b9598b82946138d3bf75 (patch) | |
| tree | f3bb5e69c4463f8f3b519a31a2d036402490cdfb /Makefile | |
| parent | e088dc7df320eee30903ae713d574b9d16ad1407 (diff) | |
pktst: created + bump pk.h version to 0.9.4
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -3,7 +3,7 @@ include config.mk -.PHONY: pkmacros pkmem-types pkmem pkstr pkev pkarr pkstn pktmr test +.PHONY: pkmacros pkmem-types pkmem pkstr pkev pkiter pkarr pkstn pktmr pkuuid pkbktarr pkfuncinstr pktst test SRC = \ pkmacros.h \ @@ -18,6 +18,7 @@ SRC = \ pkbktarr.h \ pktmpln.h \ pkfuncinstr.h \ + pktst.h \ test/pkmacros.c \ test/pkmacros.cpp \ test/pkmem-types.c \ @@ -58,6 +59,7 @@ all: options .WAIT clean .WAIT \ pkbktarr \ pktmpln \ pkfuncinstr \ + pktst \ test/test-pkmem-types test/test-pkmem-types-cpp \ test/test-pkmem test/test-pkmem-cpp \ test/test-pkmacros test/test-pkmacros-cpp \ @@ -117,6 +119,8 @@ pktmpln: pktmpln.gch pktmpln.gchpp pkfuncinstr: pkfuncinstr.gch pkfuncinstr.gchpp +pktst: pktst.gch pktst.gchpp + build: pkmacros build: pkmem-types build: pkmem @@ -129,6 +133,7 @@ build: pktmr build: pkuuid build: pkbktarr build: pkfuncinstr +build: pktst echo "#ifndef PK_SINGLE_HEADER_FILE_H\n#define PK_SINGLE_HEADER_FILE_H" > pk.h cat pk.h.in \ pkmacros.h \ @@ -144,6 +149,7 @@ build: pkfuncinstr pkuuid.h \ pkbktarr.h \ pkfuncinstr.h \ + pktst.h \ >> pk.h echo "#endif /* PK_SINGLE_HEADER_FILE_H */" >> pk.h sed -i -r \ @@ -228,6 +234,7 @@ test: pkuuid test/test-pkuuid test/test-pkuuid-cpp test: pkbktarr test/test-pkbktarr test/test-pkbktarr-cpp test: pktmpln test: pkfuncinstr +test: pktst test: @echo "" ./test/test-pkmacros ; echo Result: $$? "\n" |
