Differences From Artifact [798e5fa576]:
- File Makefile — part of check-in [c34b109ceb] at 2014-02-04 05:33:44 on branch trunk — Basic socket server written, need to add HTTP support and file serving (user: rkeene, size: 189) [annotate] [blame] [check-ins using]
To Artifact [4f9f8484cc]:
- File Makefile — part of check-in [a832cf965b] at 2014-02-05 09:12:49 on branch trunk — Updated to support being compiled with dietlibc (user: rkeene, size: 237) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | + + | CC = gcc CFLAGS = -Wall -Werror -W -pthread -O3 LDFLAGS = -pthread LIBS = -lpthread filed: filed.o $(CC) $(CFLAGS) $(LDFLAGS) -o "$@" $^ $(LIBS) filed.o: filed.c clean: rm -f filed filed.o distclean: clean |
︙ |