source: proiecte/SolarSim/C/Parallel/makefile.gcc @ 152

Last change on this file since 152 was 152, checked in by (none), 14 years ago
File size: 154 bytes
Line 
1CC=gcc
2CFLAGS=-fopenmp -lm
3SRC=src
4BIN=bin
5OUTFILE=SolarSim.$(CC)
6
7all:
8        $(CC) -o $(BIN)/$(OUTFILE) $(SRC)/*.c $(CFLAGS)
9
10clean:
11        $(RM) $(BIN)/$(OUTFILE)
Note: See TracBrowser for help on using the repository browser.