mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
11 lines
112 B
Makefile
11 lines
112 B
Makefile
CC=gcc
|
|
CFLAGS=-O
|
|
|
|
default: chk_tags.x
|
|
|
|
chk_tags.x: chk_tags.c
|
|
$(CC) -o $@ $(CFLAGS) $?
|
|
|
|
clean:
|
|
-rm -f *.o *.x
|