1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-20 14:03:59 +03:00

24 lines
321 B
Makefile
Raw Normal View History

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