bgdraw

X11 background animator
git clone https://git.sinitax.com/sinitax/bgdraw
Log | Files | Refs | LICENSE | sfeed.txt

Makefile (144B)


      1CFLAGS =
      2LDLIBS = -lX11 -lm -lXinerama
      3
      4.PHONY: all clean
      5
      6all: bgdraw
      7
      8clean:
      9	rm bgdraw
     10
     11bgdraw: bgdraw.c
     12	$(CC) -o $@ $^ $(CFLAGS) $(LDLIBS)