Thread: Simple GNU Makefile

  1. #1
    Registered User
    Join Date
    May 2008
    Posts
    11

    Simple GNU Makefile

    This is a simple Makefile
    Code:
    CFLAGS = -Wall
    CC = gcc
    
    TESTS := $(wildcard encryption/*.c)
    
    tests: $(TESTS)
        echo "TESTS are compiled under tests/"
        echo "TODO: run the testunit"
    #    echo $?
    $(TESTS):
        echo $@
    #    echo $(CC) $(CFLAGS) -DTEST -o tests/$@ [email protected]
    The problem is it won't run the commands of the target $(TESTS).

    What am I missing?

  2. #2
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    Think about what $(TESTS) expands to. For instance, say you have encryption/a.c and encryption/b.c. Then the rule will expand:

    encryption/a.c encryption/b.c:
    some commands...

    There are no dependencies listed. The files exist. Nothing needs to be done, so make does nothing.

  3. #3
    Registered User
    Join Date
    May 2008
    Posts
    11
    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

    Code:
    encryption/a.c: 
        $(CC) ...
    ?

  4. #4
    Officially An Architect brewbuck's Avatar
    Join Date
    Mar 2007
    Location
    Portland, OR
    Posts
    7,396
    Try something like this:

    Code:
    CFLAGS = -Wall
    CC = gcc
    
    TEST_SRCS = $(wildcard encryption/*.c)
    TESTS = $(TEST_SRCS:.c=)
    
    .PHONY: tests
    
    tests:
        $(MAKE) CFLAGS="$(CFLAGS) -DTEST" $(TESTS)

  5. #5
    Registered User
    Join Date
    May 2008
    Posts
    11
    Thanks a lot.

    What should I look for in the manual, in regards to $(TEST_SRCS:.c=)?

  6. #6
    Registered User
    Join Date
    May 2008
    Posts
    11
    Never mind, it is in 4.14 Generating Prerequisites Automatically

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. problems with makefile
    By bartleby84 in forum C Programming
    Replies: 4
    Last Post: 02-16-2009, 09:02 AM
  2. build GNU GCC 4.3.1
    By MarkZWEERS in forum Tech Board
    Replies: 8
    Last Post: 08-10-2008, 10:43 AM
  3. Gnu Makefile help
    By tjrkz in forum Linux Programming
    Replies: 1
    Last Post: 05-19-2005, 01:56 AM
  4. Binary Search Trees Part III
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 16
    Last Post: 10-02-2004, 03:00 PM
  5. Simple makefile Problem
    By kishorepalle in forum Tech Board
    Replies: 5
    Last Post: 07-28-2004, 04:12 PM

Tags for this Thread