blob: f2ebc3f410abdc3e4d84db9fe9a51e5a91db4151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
TOP = ../../../..
include $(TOP)/configs/current
LIBNAME = indices
C_SOURCES = \
u_indices_gen.c \
u_unfilled_gen.c
include ../../Makefile.template
u_indices_gen.c: u_indices_gen.py
python $< > $@
u_unfilled_gen.c: u_unfilled_gen.py
python $< > $@
|