sandbox-c/file2char/makefile

23 lines
379 B
Makefile

#target: dependency_1 dependency_2 dependency_3 ...
# command
#
RM = /bin/rm -f
OBJ = main.o file2char.o
EXE = main
CC = /usr/bin/gcc
CFLAGS = -Wall
#
all: $(EXE)
#
$(EXE): $(OBJ)
$(CC) $(CFLAGS) $(OBJ) -o $(EXE)
#
file2char.o: file2char.c file2char.h
$(CC) -c file2char.c -o file2char.o
#
main.o: main.c file2char.h
$(CC) -c main.c -o main.o
#
clean:
$(RM) $(OBJ) $(EXE) *~