From 44a84f6d0984fe5fca1fb7d52bff68763fda86c5 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 17 Sep 2007 17:51:24 +0200 Subject: Add Makefile and .gitignore --- .gitignore | 1 + Makefile | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b33f973 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +statusbar diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3234256 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CFLAGS=-Wall +LDFLAGS=-lacpi -lcpufreq + +all: statusbar + +statusbar: statusbar.c + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -- cgit v1.2.3-54-g00ecf