Skip to content
Snippets Groups Projects

Resolve "add makefile with structure"

Merged tom.ryser requested to merge 3-add-makefile-with-structure into main
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -11,8 +11,9 @@ test: $(NAME)_test.o $(NAME).o
@@ -11,8 +11,9 @@ test: $(NAME)_test.o $(NAME).o
./test
./test
$(NAME).o: $(NAME).h
$(NAME).o: $(NAME).h
 
$(NAME)_test.o: $(NAME).h
.PHONY: clean
.PHONY: clean
clean:
clean:
rm -f *.o $(NAME) tests
rm -f *.o $(NAME) test
Loading