xref: /haiku/src/bin/pcmcia-cs/Jamfile (revision d3d8b26997fac34a84981e6d2b649521de2cc45a)
1SubDir HAIKU_TOP src bin pcmcia-cs ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5if $(TARGET_PLATFORM) != haiku {
6        UseHeaders [ FDirName $(HAIKU_TOP) headers os drivers ] : true ;
7                # We need the public pcmcia headers also when not compiling for Haiku.
8	UseHeaders [ FDirName $(HAIKU_TOP) headers os support ] : true ;
9                # We need Errors.h also when not compiling for Haiku.
10	UseHeaders [ FDirName $(HAIKU_TOP) headers posix ] : true ;
11                # We need errno.h also when not compiling for Haiku.
12}
13
14StdBinCommands
15	cardctl.c
16	dump_cis.c
17	dump_cisreg.c
18	: root ;
19
20BinCommand pack_cis :
21	pack_cis.c
22	lex_cis.l
23	yacc_cis.y
24	;
25
26
27