mirror of
https://github.com/peter-tanner/wmctrl-for-windows.git
synced 2024-11-30 11:10:16 +08:00
20 lines
203 B
Makefile
20 lines
203 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 devenv
|
|
#you can test the others yourself :D
|