Mercurial > mplayer.hg
comparison libdha/kernelhelper/Makefile @ 18083:b069afd2a0de
Simplify mkdir calls.
author | diego |
---|---|
date | Thu, 13 Apr 2006 16:49:56 +0000 |
parents | b69ddd4d3bb9 |
children | 618d1857f4c4 |
comparison
equal
deleted
inserted
replaced
18082:0aa3fef68422 | 18083:b069afd2a0de |
---|---|
11 | 11 |
12 test: test.c | 12 test: test.c |
13 $(CC) -O $(INCLUDES) -o $@ $@.c | 13 $(CC) -O $(INCLUDES) -o $@ $@.c |
14 | 14 |
15 install: dhahelper.o | 15 install: dhahelper.o |
16 if test ! -d $(MDIR) ; then mkdir -p $(MDIR) ; fi | 16 -mkdir -p $(MDIR) |
17 install -m 644 dhahelper.o $(MDIR)/dhahelper.o | 17 install -m 644 dhahelper.o $(MDIR)/dhahelper.o |
18 depmod -a | 18 depmod -a |
19 | 19 |
20 dep: | 20 dep: |
21 | 21 |