Skip to content
Snippets Groups Projects
Commit 24f17c86 authored by Peter Gerwinski's avatar Peter Gerwinski
Browse files

Nachbereitung 4.4.2022

parent 55518662
Branches
Tags
No related merge requests found
Makefile-modules-1
\ No newline at end of file
Makefile-modules
\ No newline at end of file
TARGET = philosophy
OBJECTS = philosophy.o answer.o
HEADERS = answer.h
CFLAGS = -Wall -O
all: $(TARGET)
$(TARGET): $(OBJECTS)
gcc $(OBJECTS) -o $(TARGET)
%.o: %.c $(HEADERS)
gcc $(CFLAGS) $< -c
clean:
rm -f $(OBJECTS) $(TARGET)
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment