You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
291 B
8 lines
291 B
15 years ago
|
uis := $(wildcard *.ui)
|
||
|
|
||
|
all: $(uis)
|
||
|
@for name in $^; do rbuic $$name > `echo $$name | awk -F '\\\.ui$$' '{ print $$1 }' 2> /dev/null`.rb; echo "Running rbuic on $$name"; done
|
||
|
|
||
|
clean: $(uis)
|
||
|
@for name in $^; do rm -f `echo $$name | awk -F '\\\.ui$$' '{ print $$1 }' 2> /dev/null`.rb; done
|