Search:

Type: Posts; User: OriginalCopy

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    4,097

    Never mind, it is in 4.14 Generating...

    Never mind, it is in 4.14 Generating Prerequisites Automatically
  2. Replies
    5
    Views
    4,097

    Thanks a lot. What should I look for in the...

    Thanks a lot.

    What should I look for in the manual, in regards to $(TEST_SRCS:.c=)?
  3. Replies
    5
    Views
    4,097

    Oh I am so dumb. How could I make such that it...

    Oh I am so dumb. How could I make such that it replaces each .c by "tests/<filename>" and create a target for it automagically, instead of me having to


    encryption/a.c:
    $(CC) ...
    ?
  4. Replies
    5
    Views
    4,097

    Simple GNU Makefile

    This is a simple Makefile

    CFLAGS = -Wall
    CC = gcc

    TESTS := $(wildcard encryption/*.c)

    tests: $(TESTS)
    echo "TESTS are compiled under tests/"
    echo "TODO: run the testunit"
Results 1 to 4 of 4