Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Rename wshc -> wsh
Browse files Browse the repository at this point in the history
Change-Id: I1b14fdd032fa2fc5de9d509c01bf93ec3290e8bc
  • Loading branch information
pietern committed Oct 15, 2012
1 parent d8d65db commit da99e46
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion warden/.gitignore
Expand Up @@ -2,7 +2,7 @@
.bundle
pkg/*
/tmp
root/linux/skeleton/bin/wshc
root/linux/skeleton/bin/wsh
root/linux/skeleton/bin/wshd
root/linux/skeleton/bin/iomux-link
root/linux/skeleton/bin/iomux-spawn
Expand Down
2 changes: 1 addition & 1 deletion warden/src/wsh/.gitignore
@@ -1,3 +1,3 @@
wshd
wshc
wsh
*.o
8 changes: 4 additions & 4 deletions warden/src/wsh/Makefile
@@ -1,20 +1,20 @@
OPTIMIZATION?=-O0
DEBUG?=-g -ggdb -rdynamic

all: wshd wshc
all: wshd wsh

clean:
rm -f *.o clone wshd wshc
rm -f *.o clone wshd wsh

install: all
cp wshd wshc ../../root/linux/skeleton/bin/
cp wshd wsh ../../root/linux/skeleton/bin/

.PHONY: all clean

wshd: wshd.o barrier.o mount.o un.o util.o msg.o
$(CC) -o $@ $^ -lutil

wshc: wshc.o pump.o un.o util.o msg.o
wsh: wsh.o pump.o un.o util.o msg.o
$(CC) -o $@ $^ -lutil

%.o: %.c
Expand Down
2 changes: 1 addition & 1 deletion warden/src/wsh/Makefile.dep
Expand Up @@ -4,5 +4,5 @@ msg.o: msg.c msg.h
pump.o: pump.c pump.h util.h
un.o: un.c un.h util.h
util.o: util.c util.h
wshc.o: wshc.c msg.h pump.h un.h
wsh.o: wsh.c msg.h pump.h un.h
wshd.o: wshd.c barrier.h msg.h mount.h un.h util.h
File renamed without changes.

0 comments on commit da99e46

Please sign in to comment.