27 lines
748 B
Makefile
27 lines
748 B
Makefile
CFLAGS=-Wall
|
|
|
|
# Runs 'all' depenency as default / i.e. 'make' command will run 'make all' implicitly
|
|
default: all
|
|
|
|
|
|
|
|
|
|
lib/network/tcp/client.o: lib/header.h lib/network/tcp/client.h lib/network/tcp/client.c
|
|
gcc $(CFLAGS) -c -o lib/network/tcp/client.o lib/network/tcp/client.c
|
|
|
|
lib/network/format/serializer.o: lib/network/format/serializer.h lib/network/format/serializer.c
|
|
gcc $(CFLAGS) -c -o lib/network/format/serializer.o lib/network/format/serializer.c
|
|
|
|
# Compiles the Plane
|
|
boot: lib/network/tcp/client.o lib/network/format/serializer.o plane.h plane.c
|
|
gcc $(CFLAGS) -o boot lib/network/tcp/client.o lib/network/format/serializer.o plane.c -lm
|
|
|
|
|
|
# Run full compilation
|
|
all: boot
|
|
|
|
# cleans the compiled files
|
|
clean:
|
|
rm boot;
|
|
rm ./**/*.o
|