12 lines
156 B
Makefile
Executable File
12 lines
156 B
Makefile
Executable File
CFLAGS = -Wall -std=gnu99
|
|
|
|
EXECUTABLES = p_pipe\
|
|
p_pipe_arg
|
|
|
|
|
|
all : ${EXECUTABLES}
|
|
|
|
clean :
|
|
@rm -f core *.o *.out *~
|
|
@rm -f ${EXECUTABLES}
|