12 lines
156 B
Makefile
Raw Permalink Normal View History

2020-05-02 00:01:44 +02:00
CFLAGS = -Wall -std=gnu99
EXECUTABLES = p_pipe\
p_pipe_arg
all : ${EXECUTABLES}
clean :
@rm -f core *.o *.out *~
@rm -f ${EXECUTABLES}