Enabled the tests by default

This commit is contained in:
Pierre Pronchery 2012-11-30 14:41:27 +01:00
parent b1ae3015af
commit a835237b9c
5 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
PACKAGE = C99
VERSION = 0.0.0
SUBDIRS = data doc include src
SUBDIRS = data doc include src tests
RM ?= rm -f
LN ?= ln -f
TAR ?= tar -czvf
@ -123,6 +123,11 @@ dist:
$(PACKAGE)-$(VERSION)/src/target/asm/i586.c \
$(PACKAGE)-$(VERSION)/src/target/asm/i686.c \
$(PACKAGE)-$(VERSION)/src/target/project.conf \
$(PACKAGE)-$(VERSION)/tests/hello.c \
$(PACKAGE)-$(VERSION)/tests/struct.c \
$(PACKAGE)-$(VERSION)/tests/union.c \
$(PACKAGE)-$(VERSION)/tests/Makefile \
$(PACKAGE)-$(VERSION)/tests/project.conf \
$(PACKAGE)-$(VERSION)/Makefile \
$(PACKAGE)-$(VERSION)/config.h \
$(PACKAGE)-$(VERSION)/config.sh \

View File

@ -2,5 +2,5 @@ package=C99
version=0.0.0
config=h,sh
subdirs=data,doc,include,src
subdirs=data,doc,include,src,tests
dist=Makefile,config.h,config.sh

View File

@ -3,6 +3,7 @@ TARGETS = c99
PREFIX = /usr/local
DESTDIR =
BINDIR = $(PREFIX)/bin
SBINDIR = $(PREFIX)/sbin
CC ?= cc
CPPFLAGSF?=
CPPFLAGS=

View File

@ -2,6 +2,7 @@ TARGETS = hello struct union
PREFIX = /usr/local
DESTDIR =
BINDIR = $(PREFIX)/bin
SBINDIR = $(PREFIX)/sbin
CC = ../src/c99
CPPFLAGSF?=
CPPFLAGS?=

View File

@ -2,6 +2,7 @@ targets=hello,struct,union
cflags_force=-W
cflags=
cc=../src/c99
dist=Makefile
[hello]
type=object