mirror of
https://github.com/helix-editor/helix
synced 2026-07-26 23:00:55 +02:00
8 lines
79 B
Makefile
8 lines
79 B
Makefile
CC = gcc
|
|
|
|
all: foo bar
|
|
$(CC) -o app foo.o bar.o
|
|
|
|
foo.o: foo.c
|
|
$(CC) -c foo.c
|