aboutsummaryrefslogtreecommitdiff
path: root/zumo/strlutest/makefile
blob: f05e0ba6626f2c3578bb5dfa0148b3bb8915156a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CPP = g++
LD = g++
RM = rm -f
CFLAGS =
LFLAGS =
TARGET = strlutest

SRCS := strlutest.cpp
OBJS := strlutest.o

all: strlutest

%.o: %.cpp
	$(CPP) -c $(CFLAGS) $< -o $@

$(TARGET): $(OBJS)
	$(LD) $^ $(LFLAGS) -o $@

clean:
	$(RM) $(TARGET) $(OBJS)