10 lines
		
	
	
		
			271 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			271 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| all: compiled\Twice.exe compiled\JustOpen.exe
 | |
| 
 | |
| clean:
 | |
| 	del /Q "compiled\*"
 | |
| 
 | |
| compiled\Twice.exe: source\Twice.c
 | |
| 	cl /Fe:$@ source\Twice.c comdlg32.lib /link /MACHINE:X64
 | |
| 
 | |
| compiled\JustOpen.exe: source\JustOpen.c
 | |
| 	cl /Fe:$@ source\JustOpen.c comdlg32.lib /link /MACHINE:X64
 |