-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
16 lines (11 loc) · 702 Bytes
/
Makefile
File metadata and controls
16 lines (11 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: chatServer libMessageQueue.o libParseMessage.o test_libParseMessage
clean:
rm -f chatServer libMessageQueue.o libParseMessage.o test_libParseMessage
chatServer: chatServer.c libParseMessage.o libMessageQueue.o protocol.h
gcc -g -Wall -o chatServer chatServer.c libParseMessage.o libMessageQueue.o
test_libParseMessage: libParseMessage.o test_libParseMessage.c libParseMessage.h protocol.h
gcc -g -Wall -o test_libParseMessage test_libParseMessage.c libParseMessage.o
libParseMessage.o: libParseMessage.c libParseMessage.h protocol.h
gcc -g -Wall -c libParseMessage.c
libMessageQueue.o: libMessageQueue.c libMessageQueue.h protocol.h
gcc -g -Wall -c libMessageQueue.c