mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
Base: Move "js" and "little" HackStudio projects into ~/Source/
This commit is contained in:
parent
bc615572a9
commit
db450dbc44
28 changed files with 1 additions and 1 deletions
17
Base/home/anon/Source/little/Makefile
Normal file
17
Base/home/anon/Source/little/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
PROGRAM = little
|
||||
OBJS = main.o
|
||||
CXXFLAGS = -g
|
||||
|
||||
all: $(PROGRAM)
|
||||
|
||||
$(PROGRAM): $(OBJS)
|
||||
$(CXX) -o $@ $(OBJS)
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) $(CXXFLAGS) -o $@ -c $<
|
||||
|
||||
clean:
|
||||
rm $(OBJS) $(PROGRAM)
|
||||
|
||||
run:
|
||||
./$(PROGRAM)
|
Loading…
Add table
Add a link
Reference in a new issue