diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-01-09 23:21:14 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2017-01-10 08:23:59 -0800 |
commit | 95e3dc7744b637f6491cab84b671cdf5825bfdcc (patch) | |
tree | f6449bd5b8ef15c71eb6fdea92be515352e2f25c /Makefile | |
parent | 65f1c4bbd7f7abff9469789f3ddc746caa1a3965 (diff) |
*: drop Makefile
Now the usual ./configure && make should suffice.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 2e6c01b..0000000 --- a/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -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 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 modules/stars/stars.h drmsetup.h fb.h fps.h util.h - $(CC) -o $@ $(SRC) $(CFLAGS) $(LDFLAGS) - -clean: - rm -f rototiller |