1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-09-30 09:10:44 +03:00
ben-wpan/atusb/fw3/version.h
Werner Almesberger 908e04c309 atusb/fw3: added proper versioning
- Makefile (atusb.elf): generate a new version iff generating a new
  executable
- Makefile (atusb.bin): print the build number and the file size
- Makefile (clean): remove the various constituend files of the version
- Makefile (version.c): generate version.c
- version.h: definitions for the generated version.c
- ep0.c (build_number, build_date): removed dummy version information
  and include version.h instead
2011-02-14 11:26:17 -03:00

24 lines
564 B
C

/*
* boot/version.h - Automatically generated version string
*
* Written 2008, 2011 by Werner Almesberger
* Copyright 2008, 2011 Werner Almesberger
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#ifndef VERSION_H
#define VERSION_H
#include <stdint.h>
extern const char *build_date;
extern const uint16_t build_number;
#endif /* !VERSION_H */