cudl

A data language as simple as JSON but as readable as YAML or TOML.
git clone https://shtanton.xyz/git/cudl.git
Log | Files | Refs | README

Makefile (94B)


      1 CC=tcc
      2 CFLAGS=-I.
      3 
      4 test: test.o cudl.o
      5 
      6 %.o: %.c
      7 	$(CC) $(CFLAGS) -c -o $@ $<
      8 
      9 test.o: cudl.h