Compare commits
3 Commits
330e6fd27b
...
ae6e7a5b2f
Author | SHA1 | Date | |
---|---|---|---|
ae6e7a5b2f | |||
9107109e1c | |||
d8eb4624a5 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
|||||||
proxy
|
proxy
|
||||||
|
main.o
|
||||||
easysock.o
|
easysock.o
|
||||||
|
11
Makefile
11
Makefile
@@ -1,5 +1,10 @@
|
|||||||
CC=gcc
|
CC=gcc
|
||||||
main: main.c easysock.c
|
CLAGS=
|
||||||
$(CC) main.c easysock.c -o proxy
|
EXEC_FILE=proxy
|
||||||
|
$(EXEC_FILE): main.o easysock.o
|
||||||
|
$(CC) main.o easysock.o -o $(EXEC_FILE)
|
||||||
allwarn: main.c easysock.c
|
allwarn: main.c easysock.c
|
||||||
$(CC) -Wall main.c easysock.c -o proxy
|
$(CC) -Wall main.c easysock.c -o $(EXEC_FILE)
|
||||||
|
delOutput: $(EXEC_FILE)
|
||||||
|
rm ./$(EXEC_FILE)
|
||||||
|
clean: delOutput $(EXEC_FILE)
|
||||||
|
2
TODO.txt
2
TODO.txt
@@ -7,3 +7,5 @@
|
|||||||
4. Try making every aspect of the program configurable via args
|
4. Try making every aspect of the program configurable via args
|
||||||
|
|
||||||
3. Add support for configuration files, which can be specified via a command-line arg
|
3. Add support for configuration files, which can be specified via a command-line arg
|
||||||
|
|
||||||
|
4. Fix Makefile - Doesn't recompile if source files have changed, only if .o files have.
|
||||||
|
Reference in New Issue
Block a user