diff options
Diffstat (limited to 'schulung_tools/malloc/Makefile')
| -rw-r--r-- | schulung_tools/malloc/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/schulung_tools/malloc/Makefile b/schulung_tools/malloc/Makefile new file mode 100644 index 0000000..b6160a8 --- /dev/null +++ b/schulung_tools/malloc/Makefile @@ -0,0 +1,7 @@ +malloc: malloc.c + $(CROSS_COMPILE)gcc -g -omalloc malloc.c + +clean: + rm -f malloc core + +.PHONY: clean |
