From d4522b8e9854178473adcea0fbb84f23f6e744bd Mon Sep 17 00:00:00 2001 From: Felipe Boeira Date: Tue, 8 Jan 2019 18:39:03 +0100 Subject: Initial commit --- src/utils/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/utils/Makefile (limited to 'src/utils/Makefile') diff --git a/src/utils/Makefile b/src/utils/Makefile new file mode 100644 index 0000000..3e72ef4 --- /dev/null +++ b/src/utils/Makefile @@ -0,0 +1,12 @@ +all: setitimer-helper squish-pty squish-unix + +CC = gcc +CFLAGS = -Wall -W -D_XOPEN_SOURCE=500 -D__EXTENSIONS__ +#LDFLAGS = -lm -lxnet +LDLIBS = -lm +setitimer-helper: setitimer-helper.o +squish-pty: squish-pty.o +squish-unix: squish-unix.o + +clean: + rm -f *.o setitimer-helper squish-pty squish-unix -- cgit v1.2.1