diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2020-07-13 22:55:46 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2021-02-16 07:57:46 +0100 |
commit | cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b (patch) | |
tree | 9cd81f1d52c64d4a472f7e79f78fb676f1c04209 /Makefile | |
download | passt-cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b.tar passt-cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b.tar.gz passt-cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b.tar.bz2 passt-cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b.tar.lz passt-cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b.tar.xz passt-cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b.tar.zst passt-cefcf0bc2c73ecdbfc44c07b08df2ed69db57e2b.zip |
merd: Initial import
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6d96f47 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS += -Wall -Wextra -pedantic + +all: merd + +merd: merd.c + $(CC) $(CFLAGS) merd.c -o merd + +.PHONY: clean +clean: + -${RM} merd |