12 lines
152 B
Plaintext
Executable File
12 lines
152 B
Plaintext
Executable File
CFLAGS = -Wall -std=gnu99 -g
|
|
|
|
EXECUTABLES = crash \
|
|
crash2
|
|
|
|
|
|
all : ${EXECUTABLES}
|
|
|
|
clean :
|
|
@rm -f core *.o *.out *~
|
|
@rm -f ${EXECUTABLES}
|