Files
lab3_test/Makefile

17 lines
285 B
Makefile
Raw Permalink Normal View History

2023-03-25 03:58:02 +03:00
CFLAGS=-Wall -I munit -ggdb
unittest_obj=munit/munit.o
2023-03-25 04:17:47 +03:00
all: aux_bin aux_test
2023-03-25 03:58:02 +03:00
2023-03-25 04:17:47 +03:00
aux_bin: aux_bin.o aux_lib.o
2023-03-25 03:58:02 +03:00
$(CC) $(CFLAGS) -o $@ $^
2023-03-25 04:17:47 +03:00
aux_test: $(unittest_obj) aux_lib.o aux_test.o
2023-03-25 03:58:02 +03:00
$(CC) $(CFLAGS) -o $@ $^
2023-03-25 04:17:47 +03:00
test: ./aux_test
./aux_test
2023-03-25 03:58:02 +03:00
clean:
2023-03-25 04:17:47 +03:00
rm *_bin *.o $(unittest_obj) aux_test