mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-11 22:40:49 +01:00
14 lines
208 B
Makefile
14 lines
208 B
Makefile
PACKAGE = echo_server
|
|
OBJECTS = echo_server.o
|
|
CFLAGS = -I/usr/local/include/uv
|
|
LDADD = -luv
|
|
|
|
hello: $(OBJECTS)
|
|
${CC} -o ${PACKAGE} ${OBJECTS} ${LDADD}
|
|
|
|
.c.o:
|
|
${CC} ${CFLAGS} -c $<
|
|
|
|
clean:
|
|
rm -f hello *.o
|