Editing README and Makefile to accomodate make clean

This commit is contained in:
Kushal K S V S 2018-03-22 16:21:49 +05:30
parent c535ed6d7c
commit 9fdda1ad75
5 changed files with 17 additions and 11 deletions

BIN
.DS_Store vendored

Binary file not shown.

BIN
tests/.DS_Store vendored

Binary file not shown.

View File

@ -15,6 +15,6 @@ all: tests
tests: $(SRC_SPRITE) tests: $(SRC_SPRITE)
$(CC) $(CFLAGS) $(INCLUDE) -o $@ $^ $(LIBS) $(CC) $(CFLAGS) $(INCLUDE) -o $@ $^ $(LIBS)
.PHONY: clean force .PHONY: clean
clean: clean:
-rm -rf *.o html/top.html html/pages -rm -rf *.o html/top.html html/pages tests

View File

@ -55,17 +55,23 @@ NOTE: One version of FreeType is referred as "base" version and the
=> set FT_TEST_PT_SIZE as a number to denote the font size. => set FT_TEST_PT_SIZE as a number to denote the font size.
EXAMPLE: FT_TEST_BASE_DIR=/home/wl/kushal/base \ EXAMPLE: FT_TEST_BASE_DIR=$(HOME)/base \
FT_TEST_TEST_DIR=/home/wl/kushal/test \ FT_TEST_TEST_DIR=$(HOME)/test \
FT_TEST_DPI="72 96" \ FT_TEST_DPI="72 96" \
FT_TEST_FONT_FILE="test.ttf" \ FT_TEST_FONT_FILE="test.ttf" \
FT_TEST_RENDER_MODE="AA RGB" \ FT_TEST_RENDER_MODE="AA RGB" \
FT_TEST_PT_SIZE="16 20" \ FT_TEST_PT_SIZE="16 20" \
./runme.sh ./runme.sh
( The values in the above example denote the default values ( The values in the above example denote the default values
for the variables ) for the variables. )
Open ./html/top.html for the web interface. Open ./html/top.html for the web interface.
5. Run the executable
-------------------------------------
To clean the html folder / to remove all the generated files,
make clean
--------------------------------------------------------------------- ---------------------------------------------------------------------
FEATURES FEATURES
@ -100,4 +106,4 @@ FEATURES
Click on the Buttons below the iframe for the animations. Click on the Buttons below the iframe for the animations.
To pause the animation, click and hold on the image. To pause the animation, click and hold on the image.

BIN
tests/html/.DS_Store vendored

Binary file not shown.