source:
branches/samba-3.5.x/testprogs/win32/npecho/GNUmakefile
| Last change on this file was 414, checked in by , 16 years ago | |
|---|---|
| File size: 319 bytes | |
| Line | |
|---|---|
| 1 | INCLUDES=-I. |
| 2 | CFLAGS=$(INCLUDES) |
| 3 | |
| 4 | NPECHO = npecho_client.exe |
| 5 | #npecho_server.exe |
| 6 | |
| 7 | NPECHO2 = npecho_client2.exe npecho_server2.exe |
| 8 | |
| 9 | all: $(NPECHO) $(NPECHO2) |
| 10 | |
| 11 | CC = i586-mingw32msvc-gcc |
| 12 | |
| 13 | .SUFFIXES: .c .obj .exe |
| 14 | |
| 15 | .c.obj: |
| 16 | $(CC) $(CFLAGS) -c $< -o $@ |
| 17 | |
| 18 | .obj.exe: |
| 19 | $(CC) $(CFLAGS) -o $@ $< $(LIBS) |
| 20 | |
| 21 | clean: |
| 22 | del *~ *.obj *.exe |
| 23 |
Note:
See TracBrowser
for help on using the repository browser.
