1
0
forked from 131/lab3_test

initial commit

This commit is contained in:
dzruyk
2023-03-25 03:58:02 +03:00
commit d4ef45f45b
13 changed files with 3302 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
CFLAGS=-Wall -I munit -ggdb
unittest_obj=munit/munit.o
all: str_bin str_test
str_test: $(unittest_obj) str_lib.o str_test.o
$(CC) $(CFLAGS) -o $@ $^
str_bin: str_lib.o str_bin.o
$(CC) $(CFLAGS) -o $@ $^
test: ./str_test
./str_test
clean:
rm *_bin *.o $(unittest_obj) str_test