Skip to content

Instantly share code, notes, and snippets.

View jc-su's full-sized avatar
🦉
Focusing

Jianchang Su jc-su

🦉
Focusing
View GitHub Profile
CC = gcc
CFLAGS = -Wall -pedantic -std=gnu11 -O2
LDFLAGS = -luv -lpthread
SRC = dispatcher.c
OBJ = $(SRC:.c=.o)
EXEC = dispatcher
all: $(EXEC)