Skip to content

Commit 950ff7e

Browse files
authored
便利
1 parent b727b57 commit 950ff7e

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1-
kryptinfo : kryptinfo.c
2-
clang -Wall -o kryptinfo kryptinfo.c
1+
CXX = clang
2+
CXXFLAGS = -Wall -O2
3+
4+
kryptinfo: kryptinfo.cpp
5+
$(CXX) $(CXXFLAGS) -o $@ $^
6+
7+
clean:
8+
rm -f kryptinfo
9+

0 commit comments

Comments
 (0)