Enabled the tests by default
This commit is contained in:
parent
b1ae3015af
commit
a835237b9c
7
Makefile
7
Makefile
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -3,6 +3,7 @@ TARGETS = c99
|
|||
PREFIX = /usr/local
|
||||
DESTDIR =
|
||||
BINDIR = $(PREFIX)/bin
|
||||
SBINDIR = $(PREFIX)/sbin
|
||||
CC ?= cc
|
||||
CPPFLAGSF?=
|
||||
CPPFLAGS=
|
||||
|
|
|
@ -2,6 +2,7 @@ TARGETS = hello struct union
|
|||
PREFIX = /usr/local
|
||||
DESTDIR =
|
||||
BINDIR = $(PREFIX)/bin
|
||||
SBINDIR = $(PREFIX)/sbin
|
||||
CC = ../src/c99
|
||||
CPPFLAGSF?=
|
||||
CPPFLAGS?=
|
||||
|
|
|
@ -2,6 +2,7 @@ targets=hello,struct,union
|
|||
cflags_force=-W
|
||||
cflags=
|
||||
cc=../src/c99
|
||||
dist=Makefile
|
||||
|
||||
[hello]
|
||||
type=object
|
||||
|
|
Loading…
Reference in New Issue
Block a user