소스 검색

Merge pull request #179 from ronnyws/master

Expand the pattern rule for the three common tests.
tags/v0.0.1
Douglas Stebila 5 년 전
committed by GitHub
부모
커밋
2f3c0bd4ec
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      test/Makefile

+ 7
- 1
test/Makefile 파일 보기

@@ -47,7 +47,13 @@ printparams: $(DEST_DIR)/printparams_$(SCHEME)_$(IMPLEMENTATION)
.PHONY: nistkat
nistkat: $(DEST_DIR)/nistkat_$(SCHEME)_$(IMPLEMENTATION)

$(DEST_DIR)/test_common_%: common/%.c $(COMMON_FILES)
$(DEST_DIR)/test_common_aes: common/aes.c $(COMMON_FILES)
mkdir -p $(DEST_DIR)
$(CC) $(CFLAGS) $< $(COMMON_FILES) -o $@
$(DEST_DIR)/test_common_fips202: common/fips202.c $(COMMON_FILES)
mkdir -p $(DEST_DIR)
$(CC) $(CFLAGS) $< $(COMMON_FILES) -o $@
$(DEST_DIR)/test_common_sha2: common/sha2.c $(COMMON_FILES)
mkdir -p $(DEST_DIR)
$(CC) $(CFLAGS) $< $(COMMON_FILES) -o $@



불러오는 중...
취소
저장