mirror of
https://github.com/peter-tanner/wmctrl-for-windows.git
synced 2024-11-30 11:10:16 +08:00
19 lines
160 B
Makefile
19 lines
160 B
Makefile
|
|
||
|
CSC=csc
|
||
|
CSC=mcs
|
||
|
|
||
|
PROG=wmctrl.exe
|
||
|
|
||
|
|
||
|
|
||
|
all: $(PROG) test
|
||
|
|
||
|
$(PROG): wmctrl.cs
|
||
|
$(CSC) wmctrl.cs
|
||
|
|
||
|
|
||
|
test:
|
||
|
$(PROG) -h
|
||
|
$(PROG) -l
|
||
|
$(PROG) -a gvim
|