summaryrefslogtreecommitdiff
blob: 8cdb0bd403bb7c16124cf132e218493e70224da9 (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
25
diff --git a/misc/Makefile b/misc/Makefile
index 7749b4a..bcb6ee7 100644
--- a/misc/Makefile
+++ b/misc/Makefile
@@ -1,15 +1,16 @@
 SUBDIRS = fbtruetype kbd
 LIB		?= lib
+STRIP	= strip
 
 all:	fbres usleep
 
-fbres:	
+fbres:
 	$(CC) $(CFLAGS) $@.c -o $@
-	strip $@
+	$(STRIP) $@
 
-usleep:	
+usleep:
 	$(CC) $(CFLAGS) $@.c -o $@
-	strip $@
+	$(STRIP) $@
 
 %:
 	@set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done