11 lines
102 B
Makefile
11 lines
102 B
Makefile
##
|
|
# TEST
|
|
#
|
|
# @file
|
|
# @version 0.1
|
|
|
|
main: main.c
|
|
$(CC) main.c -o main -Wall -Wextra -pedantic
|
|
|
|
# end
|