fork download
  1. CC = i686-w64-mingw32-gcc
  2. LK = i686-w64-mingw32-gcc
  3. RC = i686-w64-mingw32-windres
  4.  
  5. .SUFFIXES : .coff .rc
  6.  
  7. ALL: test.exe
  8. clean:
  9. rm -f *.coff *.o *.exe *~
  10. .c.o:
  11. $(CC) -mwindows -Wall -c $<
  12. test.o: test.c test.h
  13.  
  14. .rc.coff:
  15. $(RC) -i $< -o $@
  16.  
  17. test.exe: test.o test.coff
  18. $(LK) -mwindows -o test.exe test.o test.coff
  19.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty