changeset 66 | 2b4f786d9073 |
parent 0 | af501b0c1716 |
child 68 | d549894aa6a9 |
--- 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