diff --git a/ddos/Makefile b/ddos/Makefile --- a/ddos/Makefile +++ b/ddos/Makefile @@ -1,9 +1,14 @@ -CC=gcc -g -ggdb -CFLAGS=-Wall -O2 -Iinclude -ansi -NASM=nasm -f elf -Iinclude/ -TARGET=client server -SOBJECTS=server.o set_limit.o -COBJECTS=client.o + CC = gcc -g -ggdb + CFLAGS = -Wall -O2 -Iinclude -ansi + NASM = nasm -f elf -Iinclude/ + + TARGET = client + TARGET += server + +SOBJECTS = server.o +SOBJECTS += set_limit.o + +COBJECTS = client.o .SUFFIXES: .c .asm