mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 08:06:48 +00:00
11 lines
143 B
Makefile
11 lines
143 B
Makefile
|
|
all: fabs.o round.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
|
|
fabs.o: fabs.c
|
|
gcc $(CFLAGS) -c fabs.c -o fabs.o
|
|
|
|
round.o: round.c
|
|
gcc $(CFLAGS) -c round.c -o round.o
|