ddos/Makefile
changeset 66 2b4f786d9073
parent 0 af501b0c1716
child 68 d549894aa6a9
equal deleted inserted replaced
65:76514757b0d6 66:2b4f786d9073
     1 CC=gcc -g -ggdb
     1        CC = gcc -g -ggdb
     2 CFLAGS=-Wall -O2 -Iinclude -ansi
     2    CFLAGS = -Wall -O2 -Iinclude -ansi
     3 NASM=nasm -f elf -Iinclude/
     3      NASM = nasm -f elf -Iinclude/
     4 TARGET=client server
     4 
     5 SOBJECTS=server.o set_limit.o
     5   TARGET  = client
     6 COBJECTS=client.o
     6   TARGET += server
       
     7 
       
     8 SOBJECTS  = server.o
       
     9 SOBJECTS += set_limit.o
       
    10 
       
    11 COBJECTS  = client.o
     7 
    12 
     8 .SUFFIXES: .c .asm
    13 .SUFFIXES: .c .asm
     9 
    14 
    10 .c.o:
    15 .c.o:
    11 	@echo Compiling $< ...
    16 	@echo Compiling $< ...