nix_utf8_aesthetic

Simple tool to generate aesthetic text
git clone https://0xdd.org/code/nix_utf8_aesthetic.git
Log | Files | Refs | README | LICENSE

Makefile (239B)


      1 #2018 David DiPaola
      2 #licensed under CC0 (public domain, see https://creativecommons.org/publicdomain/zero/1.0/)
      3 
      4 BIN = utf8_aesthetic
      5 
      6 .PHONY: all
      7 all: $(BIN)
      8 
      9 $(BIN): main.c
     10 	$(CC) $(CFLAGS) $< -o $@
     11 
     12 .PHONY: clean
     13 clean:
     14 	rm -rf $(BIN)
     15