Quellcode durchsuchen

Makefile: Make "make test" depend on the main program.

Otherwise, running "make test" can run an old version of the code,
(even when new changes are sitting in the source waiting to be
compiled).
tags/mesa-7.9-rc1
Carl Worth vor 15 Jahren
Ursprung
Commit
462cce1852
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      Makefile

+ 1
- 1
Makefile Datei anzeigen

@@ -17,7 +17,7 @@ glcpp: glcpp.o glcpp-lex.o glcpp-parse.o hash_table.o xtalloc.o

glcpp-lex.c: glcpp-parse.h

test:
test: glcpp
@(cd tests; ./glcpp-test)

clean:

Laden…
Abbrechen
Speichern