1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00
samba-mirror/testprogs/win32/npecho/GNUmakefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
343 B
Makefile
Raw Permalink Normal View History

INCLUDES=-I.
CFLAGS=$(INCLUDES)
NPECHO = npecho_client.exe
#npecho_server.exe
NPECHO2 = npecho_client2.exe npecho_server2.exe
all: $(NPECHO) $(NPECHO2)
MINGW_CC = i586-mingw32msvc-cc
CC = $(MINGW_CC)
.SUFFIXES: .c .obj .exe
.c.obj:
$(CC) $(CFLAGS) -c $< -o $@
.obj.exe:
$(CC) $(CFLAGS) -o $@ $< $(LIBS)
clean:
rm -f *~ *.obj *.exe