From 5a1ff0323cf3a64358c65c01e69f3ecb9fac8ccd Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 26 Mar 2019 18:23:40 +1030 Subject: first code commit --- makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..e259973 --- /dev/null +++ b/makefile @@ -0,0 +1,25 @@ +TARGET = xbell +LIBS = -lX11 +CC = gcc +CFLAGS = -g -Wall -Wextra -std=c99 + +.PHONY: default all clean + +default: $(TARGET) +all: default + +OBJECTS = $(patsubst %.c, %.o, $(wildcard *.c)) +HEADERS = $(wildcard *.h) + +%.o: %.c $(HEADERS) + $(CC) $(CFLAGS) -c $< -o $@ + +.PRECIOUS: $(TARGET) $(OBJECTS) + +$(TARGET): $(OBJECTS) + $(CC) $(OBJECTS) -Wall $(LIBS) -o $@ + +clean: + -rm -f *.o + -rm -f $(TARGET) + -- cgit v1.2.3