echo-server/Makefile
2024-08-11 22:27:39 +03:00

14 lines
167 B
Makefile

server: main.o func.o
gcc main.o func.o -o server -nostdlib -static
main.o: main.S
gcc -c main.S
func.o: func.S
gcc -c func.S
clean:
rm *.o server
all: server