aboutsummaryrefslogtreecommitdiffstats
path: root/splash/Makefile
diff options
context:
space:
mode:
authorFlorent Villard <warly@mandriva.com>2004-01-05 14:29:49 +0000
committerFlorent Villard <warly@mandriva.com>2004-01-05 14:29:49 +0000
commitb47c6e3a721de6b169640bdd0f0862616ca03588 (patch)
treef327e7bcfe3eb7086a272fa2631e42d23ee266d4 /splash/Makefile
parent0b62d94318faf0fc68d551162ab0f143abb4cc35 (diff)
downloadbootsplash-b47c6e3a721de6b169640bdd0f0862616ca03588.tar
bootsplash-b47c6e3a721de6b169640bdd0f0862616ca03588.tar.gz
bootsplash-b47c6e3a721de6b169640bdd0f0862616ca03588.tar.bz2
bootsplash-b47c6e3a721de6b169640bdd0f0862616ca03588.tar.xz
bootsplash-b47c6e3a721de6b169640bdd0f0862616ca03588.zip
add splash dir
Diffstat (limited to 'splash/Makefile')
-rw-r--r--splash/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/splash/Makefile b/splash/Makefile
new file mode 100644
index 0000000..76ff7a4
--- /dev/null
+++ b/splash/Makefile
@@ -0,0 +1,24 @@
+CC = gcc
+PROGRAMS = splash
+
+CFLAGS = -Os -Wall
+# CFLAGS := $(CFLAGS) -DFBMNGDEBUG
+
+bindir = $(prefix)/sbin
+
+all: $(PROGRAMS)
+ strip $(PROGRAMS)
+
+.SUFFIXES:
+.SUFFIXES: .c .o
+
+mostlyclean:
+ -rm -f *.o core
+
+install:
+ install -m755 splash $(bindir)
+
+clean: mostlyclean
+ -rm -f splash
+
+.PHONY: mostlyclean clean all