|
Revision 16279, 391 bytes
(checked in by everaldo, 4 months ago)
|
Rename Connection sample to connection
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
TARGETS = connection.exe config.exe |
|---|
| 3 |
|
|---|
| 4 |
EXTRA_DIST = connection.cs config.cs |
|---|
| 5 |
|
|---|
| 6 |
DEBUGS = $(addsuffix .mdb, $(TARGETS)) |
|---|
| 7 |
|
|---|
| 8 |
CLEANFILES = $(TARGETS) $(DEBUGS) |
|---|
| 9 |
|
|---|
| 10 |
references=-r:../midgard/midgard-sharp.dll |
|---|
| 11 |
|
|---|
| 12 |
all: $(TARGETS) |
|---|
| 13 |
|
|---|
| 14 |
connection.exe: $(srcdir)/connection.cs |
|---|
| 15 |
$(CSC) /out:$@ $(references) $(srcdir)/connection.cs |
|---|
| 16 |
|
|---|
| 17 |
config.exe: $(srcdir)/config.cs |
|---|
| 18 |
$(CSC) /out:$@ $(references) $(srcdir)/config.cs |
|---|