From a98f22e3c93d29280f1227f9ae025e0b13a5ccaf Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Sat, 8 May 2021 13:15:18 +0100 Subject: [PATCH] Remove old Makefiles --- samples/Makefile | 36 ---------------------- samples/blend_test/Makefile | 29 ----------------- samples/depth_funcs/Makefile | 29 ----------------- samples/depth_funcs_alpha_testing/Makefile | 30 ------------------ samples/depth_funcs_ortho/Makefile | 29 ----------------- samples/lerabot01/Makefile | 30 ------------------ samples/lerabot_blend_test/Makefile | 29 ----------------- samples/lights/Makefile | 29 ----------------- samples/mipmap/Makefile | 29 ----------------- samples/multitexture_arrays/Makefile | 29 ----------------- samples/nehe02/Makefile | 29 ----------------- samples/nehe02de/Makefile | 29 ----------------- samples/nehe02va/Makefile | 29 ----------------- samples/nehe03/Makefile | 29 ----------------- samples/nehe04/Makefile | 29 ----------------- samples/nehe05/Makefile | 29 ----------------- samples/nehe06/Makefile | 29 ----------------- samples/nehe06_vq/Makefile | 29 ----------------- samples/ortho2d/Makefile | 29 ----------------- samples/paletted/Makefile | 29 ----------------- samples/paletted_pcx/Makefile | 29 ----------------- samples/polygon_offset/Makefile | 23 -------------- samples/polymark/Makefile | 29 ----------------- samples/quadmark/Makefile | 29 ----------------- samples/terrain/Makefile | 29 ----------------- samples/trimark/Makefile | 29 ----------------- samples/zclip/Makefile | 29 ----------------- samples/zclip_triangle/Makefile | 29 ----------------- samples/zclip_trianglestrip/Makefile | 29 ----------------- 29 files changed, 844 deletions(-) delete mode 100644 samples/Makefile delete mode 100644 samples/blend_test/Makefile delete mode 100644 samples/depth_funcs/Makefile delete mode 100644 samples/depth_funcs_alpha_testing/Makefile delete mode 100644 samples/depth_funcs_ortho/Makefile delete mode 100644 samples/lerabot01/Makefile delete mode 100644 samples/lerabot_blend_test/Makefile delete mode 100644 samples/lights/Makefile delete mode 100644 samples/mipmap/Makefile delete mode 100644 samples/multitexture_arrays/Makefile delete mode 100644 samples/nehe02/Makefile delete mode 100644 samples/nehe02de/Makefile delete mode 100644 samples/nehe02va/Makefile delete mode 100644 samples/nehe03/Makefile delete mode 100644 samples/nehe04/Makefile delete mode 100644 samples/nehe05/Makefile delete mode 100644 samples/nehe06/Makefile delete mode 100644 samples/nehe06_vq/Makefile delete mode 100644 samples/ortho2d/Makefile delete mode 100644 samples/paletted/Makefile delete mode 100644 samples/paletted_pcx/Makefile delete mode 100644 samples/polygon_offset/Makefile delete mode 100644 samples/polymark/Makefile delete mode 100644 samples/quadmark/Makefile delete mode 100644 samples/terrain/Makefile delete mode 100644 samples/trimark/Makefile delete mode 100644 samples/zclip/Makefile delete mode 100644 samples/zclip_triangle/Makefile delete mode 100644 samples/zclip_trianglestrip/Makefile diff --git a/samples/Makefile b/samples/Makefile deleted file mode 100644 index 5f57f16..0000000 --- a/samples/Makefile +++ /dev/null @@ -1,36 +0,0 @@ - -# Manipulate the CFLAGS to look our *our* version of the library and includes -INC_DIR = $(abspath ../include) -LIB_DIR = $(abspath ../) -export CFLAGS := $(CFLAGS) -I $(INC_DIR) -export OBJEXTRA := $(LIB_DIR)/libGLdc.a - - -all: - $(KOS_MAKE) -C nehe02 all - $(KOS_MAKE) -C nehe02va all - $(KOS_MAKE) -C nehe02de all - $(KOS_MAKE) -C nehe03 all - $(KOS_MAKE) -C nehe04 all - $(KOS_MAKE) -C nehe05 all - $(KOS_MAKE) -C nehe06 all - $(KOS_MAKE) -C nehe06_vq all - $(KOS_MAKE) -C ortho2d all - $(KOS_MAKE) -C lerabot01 all - $(KOS_MAKE) -C zclip all - $(KOS_MAKE) -C zclip_triangle all - $(KOS_MAKE) -C zclip_trianglestrip all - $(KOS_MAKE) -C terrain all - $(KOS_MAKE) -C quadmark all - $(KOS_MAKE) -C trimark all - $(KOS_MAKE) -C multitexture_arrays all - $(KOS_MAKE) -C paletted all - $(KOS_MAKE) -C paletted_pcx all - $(KOS_MAKE) -C depth_funcs all - $(KOS_MAKE) -C polymark all - $(KOS_MAKE) -C polygon_offset all - $(KOS_MAKE) -C blend_test all - $(KOS_MAKE) -C mipmap all - $(KOS_MAKE) -C lights all - $(KOS_MAKE) -C depth_funcs_alpha_testing - $(KOS_MAKE) -C depth_funcs_ortho diff --git a/samples/blend_test/Makefile b/samples/blend_test/Makefile deleted file mode 100644 index cfff063..0000000 --- a/samples/blend_test/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = blend_test.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/depth_funcs/Makefile b/samples/depth_funcs/Makefile deleted file mode 100644 index 189a9f7..0000000 --- a/samples/depth_funcs/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = depth_funcs.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/depth_funcs_alpha_testing/Makefile b/samples/depth_funcs_alpha_testing/Makefile deleted file mode 100644 index d3af3d5..0000000 --- a/samples/depth_funcs_alpha_testing/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -TARGET = depth_funcs_alpha_testing.elf -OBJS = main.o gl_png.o -KOS_CFLAGS += -std=c99 - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/depth_funcs_ortho/Makefile b/samples/depth_funcs_ortho/Makefile deleted file mode 100644 index 189a9f7..0000000 --- a/samples/depth_funcs_ortho/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = depth_funcs.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/lerabot01/Makefile b/samples/lerabot01/Makefile deleted file mode 100644 index cc15d71..0000000 --- a/samples/lerabot01/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -TARGET = lerabot01.elf -OBJS = main.o -KOS_CFLAGS += -std=c99 - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/lerabot_blend_test/Makefile b/samples/lerabot_blend_test/Makefile deleted file mode 100644 index cfff063..0000000 --- a/samples/lerabot_blend_test/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = blend_test.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/lights/Makefile b/samples/lights/Makefile deleted file mode 100644 index b268753..0000000 --- a/samples/lights/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = lights.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/mipmap/Makefile b/samples/mipmap/Makefile deleted file mode 100644 index 6b36730..0000000 --- a/samples/mipmap/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = mipmap.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/multitexture_arrays/Makefile b/samples/multitexture_arrays/Makefile deleted file mode 100644 index 2134157..0000000 --- a/samples/multitexture_arrays/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = multitexture_arrays.elf -OBJS = main.o pvr-texture.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/nehe02/Makefile b/samples/nehe02/Makefile deleted file mode 100644 index 5ba805b..0000000 --- a/samples/nehe02/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe02.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/nehe02de/Makefile b/samples/nehe02de/Makefile deleted file mode 100644 index bd09525..0000000 --- a/samples/nehe02de/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe02de.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/nehe02va/Makefile b/samples/nehe02va/Makefile deleted file mode 100644 index 38f242a..0000000 --- a/samples/nehe02va/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe02va.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/nehe03/Makefile b/samples/nehe03/Makefile deleted file mode 100644 index 586160b..0000000 --- a/samples/nehe03/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe03.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/nehe04/Makefile b/samples/nehe04/Makefile deleted file mode 100644 index ea6b90e..0000000 --- a/samples/nehe04/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe04.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/nehe05/Makefile b/samples/nehe05/Makefile deleted file mode 100644 index d09120a..0000000 --- a/samples/nehe05/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe05.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) \ No newline at end of file diff --git a/samples/nehe06/Makefile b/samples/nehe06/Makefile deleted file mode 100644 index 6059a71..0000000 --- a/samples/nehe06/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe06.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/nehe06_vq/Makefile b/samples/nehe06_vq/Makefile deleted file mode 100644 index 8daa976..0000000 --- a/samples/nehe06_vq/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = nehe06_vq.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/ortho2d/Makefile b/samples/ortho2d/Makefile deleted file mode 100644 index 57dd4d5..0000000 --- a/samples/ortho2d/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = ortho2d.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/paletted/Makefile b/samples/paletted/Makefile deleted file mode 100644 index 04e0bfd..0000000 --- a/samples/paletted/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = paletted.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/paletted_pcx/Makefile b/samples/paletted_pcx/Makefile deleted file mode 100644 index 4b557c1..0000000 --- a/samples/paletted_pcx/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = paletted_pcx.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/polygon_offset/Makefile b/samples/polygon_offset/Makefile deleted file mode 100644 index 572bd91..0000000 --- a/samples/polygon_offset/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -TARGET = offset.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) - -rm-elf: - -rm -f $(TARGET) - -$(TARGET): $(OBJS) - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: $(TARGET) - $(KOS_CC_BASE)/sh-elf/bin/objcopy -R .stack -O binary $(TARGET) $(basename $(TARGET)) - $(KOS_BASE)/utils/scramble/scramble $(basename $(TARGET)) 1ST_READ.BIN diff --git a/samples/polymark/Makefile b/samples/polymark/Makefile deleted file mode 100644 index 9910cf4..0000000 --- a/samples/polymark/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = polymark.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/quadmark/Makefile b/samples/quadmark/Makefile deleted file mode 100644 index 59c8ca9..0000000 --- a/samples/quadmark/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = quadmark.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/terrain/Makefile b/samples/terrain/Makefile deleted file mode 100644 index 9f21591..0000000 --- a/samples/terrain/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = terrain.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/trimark/Makefile b/samples/trimark/Makefile deleted file mode 100644 index 8b18757..0000000 --- a/samples/trimark/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = trimark.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/zclip/Makefile b/samples/zclip/Makefile deleted file mode 100644 index 8194677..0000000 --- a/samples/zclip/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = zclip.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/zclip_triangle/Makefile b/samples/zclip_triangle/Makefile deleted file mode 100644 index 0be2fcc..0000000 --- a/samples/zclip_triangle/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = zclip_triangle.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET) diff --git a/samples/zclip_trianglestrip/Makefile b/samples/zclip_trianglestrip/Makefile deleted file mode 100644 index 613fffc..0000000 --- a/samples/zclip_trianglestrip/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -TARGET = zclip_trianglestrip.elf -OBJS = main.o - -all: rm-elf $(TARGET) - -include $(KOS_BASE)/Makefile.rules - -clean: - -rm -f $(TARGET) $(OBJS) romdisk.* - -rm-elf: - -rm -f $(TARGET) romdisk.* - -$(TARGET): $(OBJS) romdisk.o - $(KOS_CC) $(KOS_CFLAGS) $(KOS_LDFLAGS) -o $(TARGET) $(KOS_START) \ - $(OBJS) romdisk.o $(OBJEXTRA) -lm -lkosutils $(KOS_LIBS) - -romdisk.img: - $(KOS_GENROMFS) -f romdisk.img -d romdisk -v - -romdisk.o: romdisk.img - $(KOS_BASE)/utils/bin2o/bin2o romdisk.img romdisk romdisk.o - -run: $(TARGET) - $(KOS_LOADER) $(TARGET) - -dist: - rm -f $(OBJS) romdisk.o romdisk.img - $(KOS_STRIP) $(TARGET)