X-Git-Url: http://club.cc.cmu.edu/~cmccabe/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=b6bab155258346cb1305c801fa88508df2723bdd;hb=34717a05ddffb98f6bb208c1ebc30b04c7015195;hp=e8baa16e1d3163feb6282a5ceaa900c041d904cc;hpb=758dec81300ec88f7eab10c820c8b244b093c57b;p=cmccabe-bin diff --git a/Makefile b/Makefile index e8baa16..b6bab15 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ CFLAGS=-Wall -O2 -all: errno_speak show_default_sockopts simple_time vimstart +all: bytor errno_speak show_default_sockopts simple_time vimstart hexconv + +bytor: + go build bytor.go errno_speak: errno_speak.o @@ -10,5 +13,7 @@ simple_time: simple_time.o vimstart: vimstart.o +hexconv: hexconv.o + clean: - rm -rf errno_speak show_default_sockopts simple_time vimstart *.o + rm -rf errno_speak show_default_sockopts simple_time vimstart hexconv *.o