blob: 136e8d26ec4fd974329f28007ea28438e147b49e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
### if you want X11: CFLAGS=-Wall -pedantic -std=c99 -DGRAPHICAL
### and add graphics.o to hackvr build target.
### fuck it. I'll fix it later.
CFLAGS=-Wall -pedantic -std=c99 -DGRAPHICAL
all: hackvr slowcat
hackvr: LDLIBS=-lm -lX11
hackvr: hackvr.o graphics.o
# x11.o: LDLIBS=-lm -lX11
hackvr.o: LDLIBS=-lm -lX11
graphics.o: LDLIBS=-lm -lX11
clean:
rm hackvr
rm slowcat
rm *.o
|