summaryrefslogtreecommitdiff
path: root/userland/test/Makefile
blob: 76cf84481178f3c05538f32ca2fbde0cdc72b575 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC="i686-sb-gcc"
CFLAGS = -O2 -Wall -Wextra -pedantic -Wimplicit-fallthrough -static
BINS=test
all: $(BINS)

test.o: test.c
	$(CC) $(CFLAGS) -o $@ -c $<

test: test.o
	$(CC) $(CFLAGS) -o $@ $^ $(LIB)

clean:
	rm test.o test