diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 18 |
1 files changed, 18 insertions, 0 deletions
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 |