# # Makefile for hswrap, basic tool for generating # Haskell wrapper modules for # CSC=csc CSC_OPTS= SRCS=App.cs AssemblyInfo.cs HsOutput.cs TypeInfo.cs all : hswrap.exe hswrap.exe : $(SRCS) $(CSC) $(CSC_OPTS) /out:hswrap.exe $(SRCS)