From 010a3351aa2d70ab318dfffc2e8b530a9393834c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Couturier?= Date: Wed, 16 Jun 2021 14:49:14 +0200 Subject: [PATCH] new --- CipherImg/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CipherImg/Makefile b/CipherImg/Makefile index cfd7510..0545936 100644 --- a/CipherImg/Makefile +++ b/CipherImg/Makefile @@ -17,6 +17,8 @@ endif %.o: %.c $(C) -c -o $@ $< $(CFLAGS) +%.o: %.cpp + $(CXX) -c -o $@ $< $(CFLAGS) test_sub_perm: test_sub_perm.o $(CXX) -o $@ $^ $(CFLAGS) -- 2.39.5