diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-01-09 00:53:57 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-09 00:53:57 -0800 |
commit | 6e284f6cfda2b436e7871d34367c3478aa211942 (patch) | |
tree | c84a80e4252291882dc0dc972dd1e42f222a2ede /Makefile | |
parent | bc0ea63460100f61e6c6b73abe20c1f4ffae5db4 (diff) | |
parent | c8b77543492c56b747394e2a460074febeaaeab5 (diff) |
Merge pull request #4 from ph1l/stars
stars: add starfield simulator from ph1l/stars
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,10 +1,10 @@ CFLAGS=-D_GNU_SOURCE -Wall -O3 -ffast-math -pthread $(shell pkg-config --cflags libdrm) -I. LDFLAGS=-lm -pthread $(shell pkg-config --libs libdrm) -SRC=rototiller.c modules/ray/*.c modules/roto/roto.c modules/sparkler/*.c drmsetup.c fb.c fps.c util.c +SRC=rototiller.c modules/ray/*.c modules/roto/roto.c modules/sparkler/*.c modules/stars/*.c drmsetup.c fb.c fps.c util.c all: rototiller -rototiller: $(SRC) Makefile modules/ray/*.h modules/roto/roto.h modules/sparkler/*.h drmsetup.h fb.h fps.h util.h +rototiller: $(SRC) Makefile modules/ray/*.h modules/roto/roto.h modules/sparkler/*.h modules/stars/stars.h drmsetup.h fb.h fps.h util.h $(CC) -o $@ $(SRC) $(CFLAGS) $(LDFLAGS) clean: |