Files
wmic/Samba/testprogs/win32/npecho/GNUmakefile
T

21 lines
308 B
Makefile
Raw Normal View History

2019-02-16 00:16:52 +01:00
INCLUDES=-I.
CFLAGS=$(INCLUDES)
all: npecho_client.exe npecho_server.exe
CC = i586-mingw32msvc-gcc
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $< -o $@
clean:
del *~ *.obj *.exe
npecho_client.exe: npecho_client.obj
npecho_server.exe: npecho_server.obj
%.exe:
$(CC) $(CFLAGS) -o $@ $< $(LIBS)