forked from I2P_Developers/i2p.i2p
25 lines
299 B
Makefile
25 lines
299 B
Makefile
#
|
|
# This Makefile is compatible with GNU Make and should work on POSIX systems
|
|
#
|
|
|
|
#
|
|
# Programs
|
|
#
|
|
|
|
CC = gcc
|
|
RM = rm
|
|
|
|
#
|
|
# Flags
|
|
#
|
|
|
|
CFLAGS = -g -O2 -pipe -std=c99 -Wall
|
|
CFLAGS += -I../../inc -L../../lib
|
|
LIBS = -lsam
|
|
|
|
#
|
|
# Include the make instructions common to all platforms
|
|
#
|
|
|
|
include Makefile.common
|