Home Reverse colors Help
Single page Previous Contents Next

Development with GNU/Linux
27 / 30

Makefile

GCC=gcc
OBJ=file1.o file2.o file3.o

all:$(OBJ)
	$(GCC) $(OBJ) -o my_program

file1.o:file1.c
file2.o:file2.c
file3.o:file3.c

clean:
	/bin/rm -f $(OBJ) my_program

Previous Contents Next
Contact