blob: a2405645428471c6777b0837849d81920523fa30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
CC = cc
CFLAGS = -O2 -Wall -Wextra -Werror -pedantic -std=c99
all: newbatch createspool batchd runfd
newbatch: newbatch.c
$(CC) -o newbatch $(CFLAGS) newbatch.c
createspool: createspool.c
$(CC) -o createspool $(CFLAGS) createspool.c
batchd: batchd.c
$(CC) -o batchd $(CFLAGS) batchd.c
runfd: runfd.c
$(CC) -o runfd $(CFLAGS) runfd.c
.PHONY: clean
clean:
rm -f newbatch createspool batchd
|