# Makefile for SVC test
# Author: Timo Pärnänen

# The name of the switch side executable
TARGET = svctest

# Switch side object files on the top level
OBJS = svcsockettest.o

ATMLIBDIR = /usr/lib
ATMLIBS = $(ATMLIBDIR)/libatm.a

include $(TOVESRC)/Rules.Make

# Do make in all switch subdirs, link the executable
$(TARGET) : $(OBJS)
	$(CC) $(CCFLAGS) $(INC_DIRS) -o $(TARGET) $(OBJS) $(ATMLIBS)

clean:
	rm -rf *~ core *.o $(TARGET)

# Dependencies are below. The next line is used by makedepend, so
# DO NOT DELETE
