From 3cff136600d3450105b7f7274f5033895827fa3b Mon Sep 17 00:00:00 2001 From: Florent Villard Date: Tue, 26 Feb 2002 13:03:50 +0000 Subject: added fb tools: fbresolution to detect current framebuffer resolution progress to display a colord rectangle in framebuffer --- fb/Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fb/Makefile (limited to 'fb/Makefile') diff --git a/fb/Makefile b/fb/Makefile new file mode 100644 index 0000000..0ba7cea --- /dev/null +++ b/fb/Makefile @@ -0,0 +1,29 @@ + +VERSION := 0.1.1 + +prefix=/usr/ +bindir=$(prefix)/bin + +CFLAGS=-g -O2 -Wall \ + -DVERSION='"$(VERSION)"' + +PROGS=progress fbresolution + +all build: $(PROGS) + +fbresolution: fbresolution.c + $(CC) $(CFLAGS) -o $@ fbresolution.c + +progress: progress.c + $(CC) $(CFLAGS) $(FSFLAGS) -o $@ progress.c + +install: + mkdir -p $(bindir) + install -s -m755 progress $(bindir) + install -m755 fbresolution $(bindir) + +clean: + rm -f *~ *.o *.bak core + +realclean: clean + rm -f $(PROGS) -- cgit v1.2.1