11 lines
238 B
Makefile
Executable file
11 lines
238 B
Makefile
Executable file
all: setitimer-helper squish-pty squish-unix
|
|
|
|
CC = clang
|
|
CFLAGS = -Wall -W
|
|
LDFLAGS = -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
|