From f253fb860d4970df567d795af215bd68ff1acda9 Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Sun, 2 Apr 2017 22:02:53 +0200 Subject: Initial commit --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b24625d --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CPPFLAGS = -D_GNU_SOURCE +CFLAGS = -Wall -Wextra -Werror -ggdb3 -O3 +LDFLAGS = -lasound -lm -lrt + +OBJS = metronome.o +BIN = metronome + +$(BIN): $(OBJS) + +all: $(BIN) + +clean: + rm -f $(OBJS) $(BIN) -- cgit v1.2.3