Skip to content

Commit

Permalink
update all Makefiles to support PUBHFILES and PRVHFILES
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholatian committed Oct 15, 2020
1 parent d787505 commit 41cc413
Show file tree
Hide file tree
Showing 10 changed files with 94 additions and 94 deletions.
20 changes: 10 additions & 10 deletions arr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@ FWORKS :=
3PLIBS :=

# sources
SFILES :=
CFILES := \
SFILES :=
CFILES := \
src/arr.c
HFILES := \
include/uni/arr.h \
CPPFILES :=
PUBHFILES := \
include/uni/arr.h
PRVHFILES := \
src/arr.h
CPPFILES :=
HPPFILES :=

# test suite sources
TES_CFILES := \
TES_CFILES := \
src/arr.tes.c
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
18 changes: 9 additions & 9 deletions chkmath/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES :=
CFILES :=
HFILES := \
SFILES :=
CFILES :=
CPPFILES :=
PUBHFILES := \
include/uni/chkmath.h
CPPFILES :=
HPPFILES :=
PRVHFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
18 changes: 9 additions & 9 deletions decl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES :=
CFILES :=
HFILES := \
SFILES :=
CFILES :=
CPPFILES :=
PUBHFILES := \
include/uni/types/float.h \
include/uni/types/geo.h \
include/uni/types/int.h \
Expand All @@ -49,14 +50,13 @@ HFILES := \
include/uni/types/vec.h \
include/uni/decl.h \
include/uni/ver.h
CPPFILES :=
HPPFILES :=
PRVHFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
20 changes: 10 additions & 10 deletions endian/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ FWORKS :=
# 3PLIBDIR is the base directory
# 3PLIBS is the folder names in the base directory for each library
3PLIBDIR := 3rdparty
3PLIBS := tes
3PLIBS :=

# sources
SFILES :=
CFILES :=
HFILES := \
SFILES :=
CFILES :=
CPPFILES :=
PUBHFILES := \
include/uni/endian.h
CPPFILES :=
HPPFILES :=
PRVHFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
18 changes: 9 additions & 9 deletions err/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES :=
CFILES := \
SFILES :=
CFILES := \
src/err.c
HFILES := \
CPPFILES :=
PUBHFILES := \
include/uni/err.h
CPPFILES :=
HPPFILES :=
PRVHFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
18 changes: 9 additions & 9 deletions futils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES :=
CFILES := \
SFILES :=
CFILES := \
src/futils.c
HFILES := \
CPPFILES :=
PUBHFILES := \
include/uni/futils.h
CPPFILES :=
HPPFILES :=
PRVHFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
18 changes: 9 additions & 9 deletions himem/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES := \
SFILES := \
src/gbabios.s \
src/memcpy.s \
src/memset.s
CFILES := \
CFILES := \
src/gbahimem.c \
src/memory.c
HFILES := \
CPPFILES :=
PUBHFILES := \
include/uni/memory.h
PRVHFILES := \
src/gbabios.h \
src/gbahimem.h
CPPFILES :=
HPPFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
18 changes: 9 additions & 9 deletions log/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES :=
CFILES := \
SFILES :=
CFILES := \
src/log.c
HFILES := \
CPPFILES :=
PUBHFILES := \
include/uni/log.h
CPPFILES :=
HPPFILES :=
PRVHFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
20 changes: 10 additions & 10 deletions str/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES :=
CFILES := \
SFILES :=
CFILES := \
src/str.c \
src/utf8.c
HFILES := \
CPPFILES :=
PUBHFILES := \
include/uni/str.h \
include/uni/utf8.h \
include/uni/utf8.h
PRVHFILES := \
src/str.h \
src/utf8.h
CPPFILES :=
HPPFILES :=

# test suite sources
TES_CFILES := \
TES_CFILES := \
src/str.tes.c \
src/utf8.tes.c
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk
20 changes: 10 additions & 10 deletions table/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ FWORKS :=
3PLIBS := tes

# sources
SFILES :=
CFILES := \
SFILES :=
CFILES := \
src/table.c
HFILES := \
include/uni/table.h \
CPPFILES :=
PUBHFILES := \
include/uni/table.h
PRVHFILES := \
src/table.h
CPPFILES :=
HPPFILES :=

# test suite sources
TES_CFILES :=
TES_HFILES :=
TES_CPPFILES :=
TES_HPPFILES :=
TES_CFILES :=
TES_CPPFILES :=
TES_PUBHFILES :=
TES_PRVHFILES :=

# this defines all our usual targets
include $(AQ)/lib/slick/targets.mk

0 comments on commit 41cc413

Please sign in to comment.