Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 140 → Rev 141

/Classwork/CS3214 - Computer Systems/Project 5 - Web Service/Makefile
0,0 → 1,13
 
CC = gcc
#CFLAGS=-Wall -O3 -Werror
CFLAGS=-Wall -O1 -g -Werror
LDLIBS=-lpthread
 
# Use make's default rules
all: sysstatd
 
sysstatd: sysstatd.o csapp.o threadpool_exec.o list.o
 
clean:
rm -f *.o sysstatd