X-Git-Url: https://git.xandkar.net/?p=khatus.git;a=blobdiff_plain;f=x5%2FMakefile;h=d8fcc231149c90a07a9260fd1a660dbfbeb2cddd;hp=98f210c217681a94c18d9f5e7dfc87f02c685a8c;hb=HEAD;hpb=5400b86f94a27fec5dad85572f6fe0dc5a44febd diff --git a/x5/Makefile b/x5/Makefile index 98f210c..d8fcc23 100644 --- a/x5/Makefile +++ b/x5/Makefile @@ -1,18 +1,32 @@ -CFLAGS := -Wall -Wextra -LDLIBS := -lX11 +CPPFLAGS := -D_POSIX_C_SOURCE=200809L +CFLAGS := -std=c99 -Wall -Wextra +LDLIBS := -lX11 -EXECUTABLES := khatus +.PHONY: build clean rebuild -.PHONY: \ - build \ - clean \ - rebuild +build: \ + khatus \ + khatus_sensor_battery \ + khatus_sensor_time -build: $(EXECUTABLES) +khatus: \ + khlib_log.o \ + khlib_time.o + +khatus_sensor_battery: \ + khlib_log.o \ + khlib_time.o + +khatus_sensor_time: \ + khlib_log.o \ + khlib_time.o + +khlib_time.o: khlib_log.o clean: - @find . -name '*.o' -type f -delete - @rm -f $(EXECUTABLES) + @find . -type f -executable -delete + @find . -type f -name '*.o' -delete -rebuild: clean +rebuild: + @$(MAKE) -s clean @$(MAKE) -s build