blob: 16ad59d286d349b414219a537ed351a425c725af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*- Autoconf -*-
# Copyright (c) 2008 by cisco Systems, Inc.
# All rights reserved.
# Process this file with autoconf to produce a configure script.
AC_INIT(vppapigen, 1.0)
AM_INIT_AUTOMAKE
AM_SILENT_RULES([yes])
# Checks for programs.
AC_PROG_CC
AC_PROG_YACC
AC_OUTPUT([Makefile])
|