Files
i2p.itoopie/apps/sam/c/examples/warhammer/Makefile.mingw

26 lines
346 B
Makefile
Raw Normal View History

#
# This Makefile is compatible with GNU Make and has Winsock linking
#
#
# Programs
#
2004-12-09 14:05:22 +00:00
CC = C:\MinGW\bin\gcc
RM = C:\MinGW\bin\rm
#
# Flags
#
CFLAGS = -g -O2 -pipe -std=c99 -Wall
CFLAGS += -DWINSOCK
2004-08-27 01:29:18 +00:00
CFLAGS += -I../../inc -L../../lib
LIBS = -lsam -lwsock32
#
2004-08-09 09:39:20 +00:00
# Include the make instructions common to all platforms
#
2004-08-09 09:39:20 +00:00
include Makefile.common