]> wimlib.net Git - wimlib/blob - examples/Makefile
Add additional reparse point tests to win32-test-imagex-capture_and_apply.bat
[wimlib] / examples / Makefile
1 CFLAGS := -Wall
2 LDLIBS := -lwim
3
4 EXE := applywim capturewim updatewim compressfile decompressfile
5
6 all:$(EXE)
7
8 clean:
9         rm -f $(EXE)
10
11 .PHONY: all clean