Rev 432 | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 432 | Rev 444 | ||
|---|---|---|---|
| 1 | SOURCES = Source/Daemon.cs Source/TcpServer.cs |
1 | SOURCES = Source/Daemon.cs Source/TcpServer.cs ../csharp-lib/CanPacket.cs Source/Program.cs Source/SerialConnection.cs Source/Properties/AssemblyInfo.cs |
| 2 | # Source/Downloader.cs Source/HexFile.cs |
2 | # Source/Downloader.cs Source/HexFile.cs |
| 3 | #OUT = canBootloader.exe |
3 | #OUT = canBootloader.exe |
| 4 | PRG = canDaemon |
4 | PRG = canDaemon |
| 5 | # You should not have to change anything below here. |
5 | # You should not have to change anything below here. |
| 6 | 6 | ||
| 7 | GMCS = gmcs |
7 | GMCS = gmcs |
| 8 | CFLAGS = -out:$(PRG).exe |
8 | CFLAGS = -out:$(PRG).exe |
| 9 | 9 | ||
| 10 | default: $(PRG).exe |
10 | default: $(PRG).exe |
| 11 | #default: |
11 | #default: |
| 12 | # $(GMCS) $(CFLAGS) $(SOURCES) |
12 | # $(GMCS) $(CFLAGS) $(SOURCES) |
| 13 | 13 | ||
| 14 | all: $(PRG).exe |
14 | all: $(PRG).exe |
| 15 | #all: |
15 | #all: |
| 16 | # $(GMCS) $(CFLAGS) $(SOURCES) |
16 | # $(GMCS) $(CFLAGS) $(SOURCES) |
| 17 | 17 | ||
| 18 | $(PRG).exe: $(SOURCES) |
18 | $(PRG).exe: $(SOURCES) |
| 19 | $(GMCS) $(CFLAGS) $(SOURCES) |
19 | $(GMCS) $(CFLAGS) $(SOURCES) |
| 20 | 20 | ||
| 21 | clean: |
21 | clean: |
| 22 | rm -rf $(PRG).exe |
22 | rm -rf $(PRG).exe |
| 23 | 23 | ||