26 lines
346 B
Makefile
26 lines
346 B
Makefile
#
|
|
# This Makefile is compatible with GNU Make and has Winsock linking
|
|
#
|
|
|
|
#
|
|
# Programs
|
|
#
|
|
|
|
CC = C:\MinGW\bin\gcc
|
|
RM = C:\MinGW\bin\rm
|
|
|
|
#
|
|
# Flags
|
|
#
|
|
|
|
CFLAGS = -g -O2 -pipe -std=c99 -Wall
|
|
CFLAGS += -DWINSOCK
|
|
CFLAGS += -I../../inc -L../../lib
|
|
LIBS = -lsam -lwsock32
|
|
|
|
#
|
|
# Include the make instructions common to all platforms
|
|
#
|
|
|
|
include Makefile.common
|