X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Futils%2FMakefile;h=e38eb1f3dfa2972035eee486247e40e939a0be38;hb=HEAD;hp=9eca3baa148404a344f88046e4ed9aa459166336;hpb=e9fd665beb814115e19fdbcd33cddd8a299c6960;p=pintos-anon diff --git a/src/utils/Makefile b/src/utils/Makefile index 9eca3ba..e38eb1f 100644 --- a/src/utils/Makefile +++ b/src/utils/Makefile @@ -1,7 +1,11 @@ -all: setitimer-helper +all: setitimer-helper squish-pty squish-unix -LDFLAGS = -lm +CC = gcc +CFLAGS = -Wall -W +LOADLIBES = -lm setitimer-helper: setitimer-helper.o +squish-pty: squish-pty.o +squish-unix: squish-unix.o clean: - rm -f *.o setitimer-helper + rm -f *.o setitimer-helper squish-pty squish-unix