8 lines
74 B
Makefile
8 lines
74 B
Makefile
SOURCES = main.c
|
|
|
|
all: ${SOURCES}
|
|
cc ${SOURCES} -lX11
|
|
|
|
run: all
|
|
./a.out
|