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