pomo

A simple pomodoro timer
Log | Files | Refs | README | LICENSE

makefile (234B)


      1 CC=gcc
      2 SRC=pomo.c
      3 OUT=pomo
      4 STYLE_BLUEPRINT=webkit
      5 FORMATTER=clang-format -i -style=$(STYLE_BLUEPRINT)
      6 
      7 build: $(SRC)
      8 	$(CC) $(SRC) -o $(OUT)
      9 
     10 install:
     11 	cp ./$(OUT) /bin/pomo
     12 
     13 lint:
     14 	clang-tidy $(SRC) --
     15 
     16 format: 
     17 	$(FORMATTER) $(SRC)