aboutsummaryrefslogtreecommitdiffstats
path: root/splash/Makefile
blob: 76ff7a4b8204e08320f4e4ee557ce8efabf2b2b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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