Last active
August 22, 2024 04:19
-
-
Save reecer/11065346 to your computer and use it in GitHub Desktop.
A general makefile for general-purpose C projects.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CC=gcc | |
CCFLAGS=-Wall | |
LDFLAGS= | |
SOURCES=$(wildcard *.c) | |
OBJECTS=$(SOURCES:.c=.o) | |
TARGET=des | |
all: $(TARGET) | |
$(TARGET): $(OBJECTS) | |
$(CC) -o $@ $^ $(LDFLAGS) | |
%.o: %.c %.h | |
$(CC) $(CCFLAGS) -c $< | |
%.o: %.c | |
$(CC) $(CCFLAGS) -c $< | |
clean: | |
rm -f *.o $(TARGET) |
I get an error on line 11
@MMBC-Chris if there error is the same as below:
Makefile:11: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
replace the spaces with a tab character
Cool, thanks!
CC=gcc
CCFLAGS=-Wall
LDFLAGS=
SOURCES=$(wildcard *.c)
OBJECTS=$(SOURCES:.c=.o)
TARGET=des
all: $(TARGET)
%.o: %.c %.h
%.o: %.c
clean:
rm -f *.o $(TARGET)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<3