Skip to content
Snippets Groups Projects
Select Git revision
  • f4884a80b3f14e7bf90dca8c7b2bd427d0d57c39
  • main default
  • lia
  • lz449-main-patch-11361
  • Banner
  • agm67-main-patch-47955
  • agm67-main-patch-84618
  • agm67-main-patch-11005
  • material-ui
9 results

Home.js

Blame
  • makefile NaN GiB
    # Compiler settings
    CC = gcc
    CFLAGS = -Wall -Wextra -g
    
    # Target executable name
    TARGET = dsh
    
    # Find all source and header files
    SRCS = $(wildcard *.c)
    HDRS = $(wildcard *.h)
    
    # Default target
    all: $(TARGET)
    
    # Compile source to executable
    $(TARGET): $(SRCS) $(HDRS)
    	$(CC) $(CFLAGS) -o $(TARGET) $(SRCS)
    
    # Clean up build files
    clean:
    	rm -f $(TARGET)
    
    test:
    	./test.sh
    
    # Phony targets
    .PHONY: all clean