diff options
Diffstat (limited to 'src/net_unix/Makefile')
| -rw-r--r-- | src/net_unix/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net_unix/Makefile b/src/net_unix/Makefile new file mode 100644 index 0000000..648ca88 --- /dev/null +++ b/src/net_unix/Makefile @@ -0,0 +1,9 @@ + + +all: udp.o + +udp.o: udp.c udp.h + $(CC) $(CFLAGS) -o udp.o -c udp.c + +clean: + rm -rf *.o |