diff options
Diffstat (limited to 'schulung_tools/matrix/Makefile')
| -rw-r--r-- | schulung_tools/matrix/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/schulung_tools/matrix/Makefile b/schulung_tools/matrix/Makefile new file mode 100644 index 0000000..a5c8404 --- /dev/null +++ b/schulung_tools/matrix/Makefile @@ -0,0 +1,12 @@ +CFLAGS=-O0 -g -Wall -pedantic -lpthread -std=gnu99 +LDFLAGS=-lpthread + +all: main + +main.o: main.c +main: main.o + +clean: + rm -rf main *.o + +.PHONY: clean |
