Skip to content

Instantly share code, notes, and snippets.

@agrif
agrif / Makefile
Last active May 4, 2023 04:50
a horrible, horrible, wonderful C Preprocessor hack library
OBJECTS = cobalt.o co-new.o co-iterate.o co-range.o test.o
TARGET = test
CFLAGS = -Wall -Werror -std=gnu99
.PHONY : all clean
all : ${TARGET}
clean :
rm -f ${TARGET} ${OBJECTS}