TARGET = flowtoas LIBS = INCLUDES = -I../../include CFLAGS = -Wall -g $(INCLUDES) CC = g++ SRCS = flowtoas.c HDRS = all: $(TARGET) clean: rm -f *.o rm -f $(TARGET) ctags: ctags -t *.h *.c clean: rm -f *.o rm -f $(TARGET) install: cp flowtoas $(PREFIX)/bin