From 32d9faa16f00ec930a72f5ed2dd0ba00bbfe95ca Mon Sep 17 00:00:00 2001 From: lonkaars Date: Fri, 28 May 2021 20:00:08 +0200 Subject: initial commit --- makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..37f7b82 --- /dev/null +++ b/makefile @@ -0,0 +1,18 @@ +CC = gcc +LD = gcc +RM = rm -f +CFLAGS = + +SOURCES := $(wildcard *.c) +OBJECTS := $(patsubst %.c,%.o, $(SOURCES)) + +all: musicopy + +voerbak: $(OBJECTS) + $(CC) $(OBJECTS) -o musicopy + +clean: + $(RM) musicopy + +distclean: clean + $(RM) *.o -- cgit v1.2.3