10 lines
199 B
Makefile
10 lines
199 B
Makefile
CC=armv5te-cross-linux-gnueabi-gcc
|
|
CFLAGS ?= -Wall -fPIC -O2 $(OPTS) $(INCLUDE) $(DEFINES)
|
|
LDFLAGS ?= -s -lpthread -lm -lrt -L.
|
|
|
|
OBJ = bin/arm
|
|
EXECUTABLE = bin/tinysvcmdns-arm
|
|
|
|
include Makefile
|
|
|